Skip to content

Commit adbff05

Browse files
committed
fix QSPI_SINGLE pin definitions
1 parent c999e2a commit adbff05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/atmel-samd/supervisor/qspi_flash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ void spi_flash_init(void) {
243243

244244
// The QSPI is only connected to one set of pins in the SAMD51 so we can hard code it.
245245
#ifdef EXTERNAL_FLASH_QSPI_SINGLE
246-
uint32_t pins[] = {PIN_PA08, PIN_PB10, PIN_PB11};
246+
uint32_t pins[] = {PIN_PA08, PIN_PA09, PIN_PA10, PIN_PA11, PIN_PB10, PIN_PB11};
247247
#elif defined(EXTERNAL_FLASH_QSPI_DUAL)
248248
uint32_t pins[] = {PIN_PA08, PIN_PA09, PIN_PB10, PIN_PB11};
249249
#else

0 commit comments

Comments
 (0)