Skip to content

Commit

Permalink
fix QSPI_SINGLE pin definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
maholli committed Oct 24, 2021
1 parent c999e2a commit adbff05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/atmel-samd/supervisor/qspi_flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ void spi_flash_init(void) {

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

0 comments on commit adbff05

Please sign in to comment.