diff options
| author | mrmcwethy <mrmcwethy@yahoo.com> | 2017-11-21 11:56:27 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2017-11-21 14:39:56 -0800 |
| commit | e0eae5cb2ababffafe939aee1682827217d0dfe5 (patch) | |
| tree | 2ec91d18dd44e7eef1143de8dce8c4474d0f3649 | |
| parent | 6f662e9bbccff23069bca9594565686bf9064052 (diff) | |
Enable the Neopixel status light on Metro M0 Express and Feather M0 Express boards
| -rw-r--r-- | ports/atmel-samd/boards/feather_m0_express/mpconfigboard.h | 2 | ||||
| -rw-r--r-- | ports/atmel-samd/boards/metro_m0_express/mpconfigboard.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.h b/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.h index 39706e260..83c681061 100644 --- a/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.h +++ b/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.h @@ -1,7 +1,7 @@ #define MICROPY_HW_BOARD_NAME "Adafruit Feather M0 Express" #define MICROPY_HW_MCU_NAME "samd21g18" -// #define MICROPY_HW_NEOPIXEL (&pin_PA06) +#define MICROPY_HW_NEOPIXEL (&pin_PA06) // Salae reads 12mhz which is the limit even though we set it to the safer 8mhz. #define SPI_FLASH_BAUDRATE (8000000) diff --git a/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.h b/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.h index de3cf29da..e3b67de4b 100644 --- a/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.h +++ b/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.h @@ -6,7 +6,7 @@ #define MICROPY_HW_LED_TX PIN_PA27 //#define MICROPY_HW_LED_RX PIN_PA31 -//#define MICROPY_HW_NEOPIXEL (&pin_PA30) +#define MICROPY_HW_NEOPIXEL (&pin_PA30) // Salae reads 12mhz which is the limit even though we set it to the safer 8mhz. #define SPI_FLASH_BAUDRATE (8000000) |
