- #ifndef APP_SPI_H__
- #define APP_SPI_H__
- #include <stdint.h>
- #include <string.h>
- #include <stdbool.h>
- #include "nordic_common.h"
- void spis_init(void);
- void spis_pin_reset(void);
- void spis_send_data(uint8_t* data, uint16_t length);
- #endif /* APP_SPI_H__ */
|