spi.h 260 B

123456789101112131415
  1. #ifndef APP_SPI_H__
  2. #define APP_SPI_H__
  3. #include <stdint.h>
  4. #include <string.h>
  5. #include <stdbool.h>
  6. #include "nordic_common.h"
  7. void spis_init(void);
  8. void spis_pin_reset(void);
  9. void spis_send_data(uint8_t* data, uint16_t length);
  10. #endif /* APP_SPI_H__ */