diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-10-19 17:41:16 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-10-19 17:41:16 -0700 |
| commit | eb139c9babeda44a7e613602f8aa86d6207cb994 (patch) | |
| tree | 760b3e1599a883af29be2d56c25cc79c6c5b4d6b | |
| parent | f0b37313c5adf2ad940d7279aa49620d36d7292d (diff) | |
Correct pins to not reset.
They must have the PORT_ prefix otherwise they mask the wrong pins.
Fixes #3552
| -rw-r--r-- | ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.h b/ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.h index cbca94e03..475752afb 100644 --- a/ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.h +++ b/ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.h @@ -9,7 +9,7 @@ // These are pins not to reset. // QSPI Data pins, PA23 is NeoPixel -#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PA23) +#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PORT_PA23) // QSPI CS, QSPI SCK #define MICROPY_PORT_B (PORT_PB10 | PORT_PB11) #define MICROPY_PORT_C (0) |
