Skip to content

Commit ed18c1f

Browse files
authored
Fix a critical "typo"
Current compiled downloads are unusable because MICROPY_QSPI_CS is defined as the wrong pin
1 parent bd997dd commit ed18c1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/nrf/boards/makerdiary_nrf52840_mdk/mpconfigboard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#define MICROPY_QSPI_DATA2 NRF_GPIO_PIN_MAP(1, 2)
3838
#define MICROPY_QSPI_DATA3 NRF_GPIO_PIN_MAP(1, 1)
3939
#define MICROPY_QSPI_SCK NRF_GPIO_PIN_MAP(1, 3)
40-
#define MICROPY_QSPI_CS NRF_GPIO_PIN_MAP(1, 8)
40+
#define MICROPY_QSPI_CS NRF_GPIO_PIN_MAP(1, 6)
4141

4242
#define BOARD_HAS_CRYSTAL 0
4343

0 commit comments

Comments
 (0)