19f3523499
IRAM. Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
30 lines
646 B
Plaintext
30 lines
646 B
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_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
|