mirror of
https://github.com/espressif/esp-idf.git
synced 2026-05-04 20:05:25 +02:00
spiflash: add octal spi psram support on 727
This commit is contained in:
@@ -61,6 +61,33 @@ menu "Serial flasher config"
|
||||
The flasher tool sends a precompiled download stub first by default. That stub allows things
|
||||
like compressed downloads and more. Usually you should not need to disable that feature
|
||||
|
||||
config ESPTOOLPY_OCT_FLASH
|
||||
depends on IDF_TARGET_ESP32S3
|
||||
bool "Enable Octal Flash"
|
||||
default n
|
||||
|
||||
choice ESPTOOLPY_FLASH_VENDOR
|
||||
depends on ESPTOOLPY_OCT_FLASH
|
||||
prompt "Select OPI Flash Vendor"
|
||||
default ESPTOOLPY_FLASH_VENDOR_MXIC
|
||||
|
||||
config ESPTOOLPY_FLASH_VENDOR_MXIC
|
||||
bool "MXIC OPI FLASH(MX25UM25645G)"
|
||||
endchoice
|
||||
|
||||
choice ESPTOOLPY_FLASHMODE_OCT
|
||||
depends on ESPTOOLPY_OCT_FLASH
|
||||
prompt "Flash OPI mode"
|
||||
default ESPTOOLPY_FLASHMODE_OPI_DTR
|
||||
|
||||
config ESPTOOLPY_FLASHMODE_OPI_STR
|
||||
depends on ESPTOOLPY_FLASH_VENDOR_MXIC
|
||||
bool "OPI_STR"
|
||||
config ESPTOOLPY_FLASHMODE_OPI_DTR
|
||||
depends on ESPTOOLPY_FLASH_VENDOR_MXIC
|
||||
bool "OPI_DTR"
|
||||
endchoice
|
||||
|
||||
choice ESPTOOLPY_FLASHMODE
|
||||
prompt "Flash SPI mode"
|
||||
default ESPTOOLPY_FLASHMODE_DIO
|
||||
@@ -101,6 +128,7 @@ menu "Serial flasher config"
|
||||
bool "40 MHz"
|
||||
config ESPTOOLPY_FLASHFREQ_26M
|
||||
bool "26 MHz"
|
||||
depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32C3
|
||||
config ESPTOOLPY_FLASHFREQ_20M
|
||||
bool "20 MHz"
|
||||
endchoice
|
||||
|
||||
Reference in New Issue
Block a user