61 lines
1.4 KiB
Plaintext
61 lines
1.4 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
|
|
---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
|
|
---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
|
|
---help---
|
|
Number of seconds to wait in PM_SLEEP.
|
|
|
|
config PM_SLEEP_WAKEUP_NSEC
|
|
int "PM_SLEEP delay (nanoseconds)"
|
|
default 0
|
|
---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_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.
|
|
|
|
endif # ARCH_BOARD_ESP32C3_DEVKIT
|