fix QSPI_SINGLE pin definitions

This commit is contained in:
Max Holliday 2021-10-24 12:37:30 -07:00
parent c999e2a329
commit adbff053ce
1 changed files with 1 additions and 1 deletions

View File

@ -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