Skip to content

Commit d99c2ff

Browse files
author
Michael Welling
committed
QSPI flash fixes
We had the pin names swapped on the schematic and a different flash was populated. Signed-off-by: Michael Welling <[email protected]>
1 parent 3aed0a1 commit d99c2ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ports/nrf/boards/ohs2020_badge/mpconfigboard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#define MICROPY_HW_MCU_NAME "nRF52840"
3333

3434
#if QSPI_FLASH_FILESYSTEM
35-
#define MICROPY_QSPI_DATA0 NRF_GPIO_PIN_MAP(0, 22)
36-
#define MICROPY_QSPI_DATA1 NRF_GPIO_PIN_MAP(1, 0)
35+
#define MICROPY_QSPI_DATA0 NRF_GPIO_PIN_MAP(1, 0)
36+
#define MICROPY_QSPI_DATA1 NRF_GPIO_PIN_MAP(0, 22)
3737
#define MICROPY_QSPI_DATA2 NRF_GPIO_PIN_MAP(0, 20)
3838
#define MICROPY_QSPI_DATA3 NRF_GPIO_PIN_MAP(1, 2)
3939
#define MICROPY_QSPI_SCK NRF_GPIO_PIN_MAP(1, 1)

ports/nrf/boards/ohs2020_badge/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ MCU_CHIP = nrf52840
77

88
QSPI_FLASH_FILESYSTEM = 1
99
EXTERNAL_FLASH_DEVICE_COUNT = 1
10-
EXTERNAL_FLASH_DEVICES = "W25Q32JV_IQ"
10+
EXTERNAL_FLASH_DEVICES = "W25Q128JV_SQ"

0 commit comments

Comments
 (0)