cff2bc05e0
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
132 lines
3.1 KiB
Plaintext
132 lines
3.1 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_ESP32C3_DEVKIT
|
|
|
|
if PM
|
|
|
|
config PM_ALARM_SEC
|
|
int "PM_STANDBY delay (seconds)"
|
|
default 15
|
|
depends on PM
|
|
---help---
|
|
Number of seconds to wait in PM_STANDBY before going to PM_STANDBY mode.
|
|
|
|
config PM_ALARM_NSEC
|
|
int "PM_STANDBY delay (nanoseconds)"
|
|
default 0
|
|
depends on PM
|
|
---help---
|
|
Number of additional nanoseconds to wait in PM_STANDBY before going to PM_STANDBY mode.
|
|
|
|
config PM_SLEEP_WAKEUP_SEC
|
|
int "PM_SLEEP delay (seconds)"
|
|
default 20
|
|
depends on PM
|
|
---help---
|
|
Number of seconds to wait in PM_SLEEP.
|
|
|
|
config PM_SLEEP_WAKEUP_NSEC
|
|
int "PM_SLEEP delay (nanoseconds)"
|
|
default 0
|
|
depends on PM
|
|
---help---
|
|
Number of additional nanoseconds to wait in PM_SLEEP.
|
|
|
|
endif # PM
|
|
|
|
config ESP32C3_DEVKIT_RUN_IRAM
|
|
bool "Run from IRAM"
|
|
default n
|
|
|
|
config ESP32C3_MERGE_BINS
|
|
bool "Merge raw binary files into a single file"
|
|
default n
|
|
---help---
|
|
Merge the raw binary files into a single file for flashing to the
|
|
device.
|
|
This is only useful when the path to binary files (e.g. bootloader)
|
|
is provided via the ESPTOOL_BINDIR variable.
|
|
|
|
config ESP32C3_STORAGE_MTD_ENCRYPT
|
|
bool "Encrypt Storage MTD partition"
|
|
default y
|
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
config ESP32C3_STORAGE_MTD_OFFSET
|
|
hex "Storage MTD base address in SPI Flash"
|
|
default 0x180000 if !ESP32C3_HAVE_OTA_PARTITION
|
|
default 0x250000 if ESP32C3_HAVE_OTA_PARTITION
|
|
depends on ESP32C3_MTD
|
|
---help---
|
|
MTD base address in SPI Flash.
|
|
|
|
config ESP32C3_STORAGE_MTD_SIZE
|
|
hex "Storage MTD size in SPI Flash"
|
|
default 0x100000
|
|
depends on ESP32C3_MTD
|
|
---help---
|
|
MTD size in SPI Flash.
|
|
|
|
choice ESP32C3_SPIFLASH_FS
|
|
prompt "Mount SPI Flash MTD on bring-up"
|
|
default ESP32C3_SPIFLASH_SMARTFS
|
|
depends on ESP32C3_MTD
|
|
optional
|
|
---help---
|
|
Mount the SPI Flash MTD with the selected File System format on board
|
|
bring-up.
|
|
If not selected, the MTD will be registered as a device node on /dev.
|
|
|
|
config ESP32C3_SPIFLASH_SMARTFS
|
|
bool "SmartFS"
|
|
select FS_SMARTFS
|
|
select MTD_SMART
|
|
depends on !ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
comment "SmartFS not supported with Flash Encryption"
|
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
config ESP32C3_SPIFLASH_NXFFS
|
|
bool "NXFFS"
|
|
select FS_NXFFS
|
|
depends on !ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
comment "NXFFS not supported with Flash Encryption"
|
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
config ESP32C3_SPIFLASH_SPIFFS
|
|
bool "SPIFFS"
|
|
select FS_SPIFFS
|
|
depends on !ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
comment "SPIFFS not supported with Flash Encryption"
|
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
|
|
|
config ESP32C3_SPIFLASH_LITTLEFS
|
|
bool "LittleFS"
|
|
select FS_LITTLEFS
|
|
|
|
endchoice
|
|
|
|
config ESP32C3_SPIFLASH_FS_MOUNT_PT
|
|
string "File-system Mount Point"
|
|
depends on ESP32C3_SPIFLASH_LITTLEFS
|
|
default "/data"
|
|
|
|
if LCD_ST7735 || LCD_ST7789 || LCD_GC9A01
|
|
|
|
config ESP32C3_LCD_RSTPIN
|
|
int "LCD reset pin"
|
|
default 9
|
|
|
|
config ESP32C3_LCD_BLPIN
|
|
int "LCD backlight pin"
|
|
default 18
|
|
|
|
endif # LCD_ST7735 || LCD_ST7789 || LCD_GC9A01
|
|
|
|
endif # ARCH_BOARD_ESP32C3_DEVKIT
|