This commit is contained in:
2026-08-31 22:43:51 -04:00
commit c87308caca
521 changed files with 141326 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#include <avr/io.h>
#include "defines.h"
#include "states.h"
#include <stdbool.h>
#ifndef SPI_H
#define SPI_H
uint8_t spi_write(uint8_t data);
uint8_t spi_read();
void spi_rfm69_select(bool state);
#endif