Files
my-ws2812b-led-deprecated/include/spi_utils.h
Passthem 5bd4c9ab10 e2
2025-04-14 16:24:32 +08:00

9 lines
169 B
C

#ifndef SPI_UTILS_H
#define SPI_UTILS_H
#include <stdint.h>
int init_device(const char* device);
int send_buffer(int fd, uint8_t* buffer, const int data_size);
#endif