diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2019-01-31 09:11:30 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-31 09:11:30 -0800 |
| commit | 39240516f3392fb42cdef9199fa6b9188cbbb46e (patch) | |
| tree | b348c683bb6fceca37a37eb3ca5adcad551069bd | |
| parent | 1c3106e56ede7fe923bb22b0639b2f1bb92ec692 (diff) | |
Correct pin capitalization
| -rwxr-xr-x | ports/atmel-samd/boards/sparkfun_lumidrive/mpconfigboard.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/atmel-samd/boards/sparkfun_lumidrive/mpconfigboard.h b/ports/atmel-samd/boards/sparkfun_lumidrive/mpconfigboard.h index 7c7579f6c..6b470af2e 100755 --- a/ports/atmel-samd/boards/sparkfun_lumidrive/mpconfigboard.h +++ b/ports/atmel-samd/boards/sparkfun_lumidrive/mpconfigboard.h @@ -6,10 +6,10 @@ // Clock rates are off: Salae reads 12MHz which is the limit even though we set it to the safer 8MHz. #define SPI_FLASH_BAUDRATE (8000000) -#define SPI_FLASH_MOSI_PIN &PIN_PA08 -#define SPI_FLASH_MISO_PIN &PIN_PA14 -#define SPI_FLASH_SCK_PIN &PIN_PA09 -#define SPI_FLASH_CS_PIN &PIN_PA13 +#define SPI_FLASH_MOSI_PIN &pin_PA08 +#define SPI_FLASH_MISO_PIN &pin_PA14 +#define SPI_FLASH_SCK_PIN &pin_PA09 +#define SPI_FLASH_CS_PIN &pin_PA13 #define MICROPY_PORT_A ( 0 ) #define MICROPY_PORT_B ( 0 ) |
