85 lines
1.8 KiB
Plaintext
85 lines
1.8 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
|
|
---help---
|
|
|
|
choice
|
|
prompt "SPIFLASH File System"
|
|
default ESP32C3_SPIFLASH_SMARTFS
|
|
depends on ESP32C3_SPIFLASH
|
|
|
|
config ESP32C3_SPIFLASH_SMARTFS
|
|
bool "SmartFS"
|
|
depends on FS_SMARTFS
|
|
|
|
config ESP32C3_SPIFLASH_NXFFS
|
|
bool "NXFFS"
|
|
depends on FS_NXFFS
|
|
|
|
config ESP32C3_SPIFLASH_SPIFFS
|
|
bool "SPIFFS"
|
|
depends on FS_SPIFFS
|
|
|
|
config ESP32C3_SPIFLASH_LITTLEFS
|
|
bool "LittleFS"
|
|
depends on FS_LITTLEFS
|
|
|
|
endchoice
|
|
|
|
config ESP32C3_SPIFLASH_ENCRYPTION_TEST
|
|
bool "SPI Flash encryption test"
|
|
default n
|
|
depends on ESP32C3_SPIFLASH
|
|
select DEBUG_ASSERTIONS
|
|
---help---
|
|
Enable SPI Flash encryption test. This option will also select
|
|
DEBUG_ASSERTIONS to enable kernel assert macro.
|
|
|
|
config ESP32C3_SPIFLASH_TEST_ADDRESS
|
|
hex "SPI Flash test address"
|
|
default 0x180000
|
|
depends on ESP32C3_SPIFLASH_ENCRYPTION_TEST
|
|
---help---
|
|
SPI Flash encryption test read/write address.
|
|
|
|
endif # ARCH_BOARD_ESP32C3_DEVKIT
|