update for all nRF boards

This commit is contained in:
Ladyada 2019-08-04 21:17:14 -04:00
parent e51641bcc3
commit 4bfbfd612d
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ typedef enum _BitOrder {
#endif
// Some platforms have a BitOrder enum but its named MSBFIRST/LSBFIRST
#if defined(ARDUINO_ARCH_SAMD) || defined(__SAM3X8E__) || defined(ARDUINO_ARCH_NRF52)
#if defined(ARDUINO_ARCH_SAMD) || defined(__SAM3X8E__) || defined(NRF52_SERIES)
#define SPI_BITORDER_MSBFIRST MSBFIRST
#define SPI_BITORDER_LSBFIRST LSBFIRST
#endif