implement SPI flash chip

This commit is contained in:
Joey Castillo
2022-01-26 22:39:09 -05:00
parent b2dbc4feeb
commit 523a5d2f0b
9 changed files with 265 additions and 33 deletions

View File

@@ -28,6 +28,8 @@ void watch_enable_spi(void) {}
void watch_disable_spi(void) {}
void watch_spi_send(uint8_t *buf, uint16_t length) {}
bool watch_spi_write(const uint8_t *buf, uint16_t length) { return false; }
void watch_spi_receive(uint8_t *buf, uint16_t length) {}
bool watch_spi_read(uint8_t *buf, uint16_t length) { return false; }
bool watch_spi_transfer(const uint8_t *data_out, uint8_t *data_in, uint16_t length) { return false; }