10 lines
211 B
C
10 lines
211 B
C
#ifndef SPI_UTILS_H
|
|
#define SPI_UTILS_H
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned int uint32_t;
|
|
|
|
int init_device(const char* device);
|
|
int send_buffer(int fd, uint8_t* buffer, const int data_size);
|
|
|
|
#endif |