nuttx/boards/xtensa/esp32/esp32-wrover-kit/Kconfig

30 lines
646 B
Plaintext
Raw Normal View History

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_BOARD_ESP32_WROVERKIT
choice
prompt "On-board Crystal Frequency"
default ESP32_WROVERKIT_XTAL_40MZ
config ESP32_WROVERKIT_XTAL_40MZ
bool "40MHz"
config ESP32_WROVERKIT_XTAL_26MHz
bool "26MHz"
endchoice # On-board Crystal Frequency
config ESP32_WROVERKIT_RUN_IRAM
bool "Run from IRAM"
default n
---help---
This loads all of NuttX inside IRAM. Used to test somewhat small
images that can fit entirely in IRAM.
source boards/xtensa/esp32/common/Kconfig
endif # ARCH_BOARD_ESP32_WROVERKIT