2020-12-03 00:05:45 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
2021-02-02 23:08:54 +01:00
|
|
|
config ESP32_QEMU_IMAGE
|
|
|
|
bool "ESP32 binary image for QEMU"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Create a binary flash image used for QEMU.
|
2021-02-22 07:15:16 +01:00
|
|
|
|
|
|
|
choice ESP32_SPIFLASH_FS
|
2021-04-09 15:38:47 +02:00
|
|
|
prompt "SPIFLASH File System"
|
|
|
|
default ESP32_SPIFLASH_SMARTFS
|
|
|
|
depends on ESP32_SPIFLASH
|
|
|
|
|
|
|
|
config ESP32_SPIFLASH_SMARTFS
|
|
|
|
bool "SmartFS"
|
|
|
|
depends on FS_SMARTFS
|
|
|
|
|
|
|
|
config ESP32_SPIFLASH_NXFFS
|
|
|
|
bool "NXFFS"
|
|
|
|
depends on FS_NXFFS
|
|
|
|
|
|
|
|
config ESP32_SPIFLASH_SPIFFS
|
|
|
|
bool "SPIFFS"
|
|
|
|
depends on FS_SPIFFS
|
|
|
|
|
|
|
|
config ESP32_SPIFLASH_LITTLEFS
|
|
|
|
bool "LittleFS"
|
|
|
|
depends on FS_LITTLEFS
|
|
|
|
|
2021-02-22 07:15:16 +01:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config ESP32_SPIFLASH_ENCRYPTION_TEST
|
|
|
|
bool "SPI Flash encryption test"
|
|
|
|
default n
|
|
|
|
depends on ESP32_SPIFLASH
|
|
|
|
select DEBUG_ASSERTIONS
|
2021-04-09 15:38:47 +02:00
|
|
|
---help---
|
2021-02-22 07:15:16 +01:00
|
|
|
Enable SPI Flash encryption test. This option will also select
|
|
|
|
DEBUG_ASSERTIONS to enable kernel assert macro.
|
|
|
|
|
|
|
|
config ESP32_SPIFLASH_TEST_ADDRESS
|
|
|
|
hex "SPI Flash test address"
|
|
|
|
default 0x180000
|
|
|
|
depends on ESP32_SPIFLASH_ENCRYPTION_TEST
|
2021-04-09 15:38:47 +02:00
|
|
|
---help---
|
2021-02-22 07:15:16 +01:00
|
|
|
SPI Flash encryption test read/write address.
|
2021-03-16 20:34:15 +01:00
|
|
|
|
|
|
|
config ESP32_LCD_OVERCLOCK
|
|
|
|
bool "Run LCD at higher clock speed than allowed"
|
|
|
|
default n
|
|
|
|
depends on LCD_ILI9341
|
|
|
|
---help---
|
|
|
|
The ILI9341 and ST7789 specify that the maximum clock speed for the
|
|
|
|
SPI interface is 10MHz. However, in practice the driver chips work
|
|
|
|
fine with a higher clock rate, and using that gives a better
|
|
|
|
framerate. Select this to try using the out-of-spec clock rate.
|