Merge pull request #148 from adafruit/attiny

update sw spi enum
This commit is contained in:
Limor "Ladyada" Fried 2025-09-22 13:55:53 -04:00 committed by GitHub
commit 195dfe880b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
#define BUSIO_HAS_HW_SPI #define BUSIO_HAS_HW_SPI
#else #else
// SW SPI ONLY // 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; typedef uint8_t SPIClass;
#endif #endif