update sw spi enum

This commit is contained in:
Liz 2025-09-19 14:11:06 -04:00
parent 7346756810
commit e6fe7e66a7
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
#define BUSIO_HAS_HW_SPI
#else
// SW SPI ONLY
enum { SPI_MODE0, SPI_MODE1, SPI_MODE2, _SPI_MODE4 };
enum { SPI_MODE0, SPI_MODE1, SPI_MODE2, SPI_MODE3 };
typedef uint8_t SPIClass;
#endif