2020-12-04 11:12:35 +01:00
|
|
|
#
|
|
|
|
# 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---
|
2021-04-06 23:22:42 +02:00
|
|
|
This loads all of NuttX inside IRAM. Used to test somewhat small
|
|
|
|
images that can fit entirely in IRAM.
|
2020-12-04 11:12:35 +01:00
|
|
|
|
2021-02-02 23:08:54 +01:00
|
|
|
source boards/xtensa/esp32/common/Kconfig
|
2020-12-04 11:12:35 +01:00
|
|
|
|
|
|
|
endif # ARCH_BOARD_ESP32_WROVERKIT
|