Skip to content

Commit

Permalink
Merge branch 'bugfix/support_GD25Q64_qio_enable_v3.3' into 'release/v…
Browse files Browse the repository at this point in the history
…3.3'

bugfix(flash): add support for GD25Q64 qio enable (backport v3.3)

See merge request sdk/ESP8266_RTOS_SDK!1241
  • Loading branch information
donghengqaz committed Dec 26, 2019
2 parents b22182f + 5a0e946 commit d3517e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/spi_flash/src/spi_flash.c
Expand Up @@ -430,7 +430,7 @@ void user_spi_flash_dio_to_qio_pre_init(void)
to_qio = true;
}
//ENABLE FLASH QIO 0X31H+BIT2
} else if (((flash_id & 0xFFFFFF) == 0x1640C8) || ((flash_id & 0xFFFFFF) == 0x1840C8)) {
} else if ((flash_id & 0xFFFF) == 0x40C8) {
if (flash_gd25q32c_enable_QIO_mode() == true) {
to_qio = true;
}
Expand Down

0 comments on commit d3517e3

Please sign in to comment.