Skip to content

Commit

Permalink
ESP32: Use QIO flash mode by default
Browse files Browse the repository at this point in the history
This will make access much faster and will work for most of the users.

For those who need to go back to DIO, this can be done as follows:

```
build_vars:
  ESP_IDF_SDKCONFIG_OPTS: >
    ${build_vars.ESP_IDF_SDKCONFIG_OPTS}
    CONFIG_FLASHMODE_QIO=
    CONFIG_FLASHMODE_DIO=y
```

CL: ESP32: Use QIO flash mode by default

PUBLISHED_FROM=a4e2d67f03063df35a25fb002b367ba929d09cc7
  • Loading branch information
Deomid Ryabkov authored and cesantabot committed Feb 8, 2019
1 parent bdff712 commit b07907b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fw/platforms/esp32/sdkconfig
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@ CONFIG_ESP32_XTAL_FREQ_40=
CONFIG_ESP32_XTAL_FREQ_26=
CONFIG_ESP32_XTAL_FREQ_AUTO=y
CONFIG_ESP32_XTAL_FREQ=0

CONFIG_FLASHMODE_DIO=
CONFIG_FLASHMODE_QIO=y

0 comments on commit b07907b

Please sign in to comment.