31 lines
742 B
Plaintext
31 lines
742 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_ESP32CORE
|
|
|
|
choice
|
|
prompt "On-board Crystal Frequency"
|
|
default ESP32CORE_XTAL_40MZ
|
|
|
|
config ESP32CORE_XTAL_40MZ
|
|
bool "40MHz"
|
|
|
|
config ESP32CORE_XTAL_26MHz
|
|
bool "26MHz"
|
|
|
|
endchoice # On-board Crystal Frequency
|
|
|
|
config ESP32CORE_RUN_IRAM
|
|
bool "Run from IRAM"
|
|
default n
|
|
---help---
|
|
The default configuration is set up run from IRAM. However, the
|
|
current (2016-11-14) OpenOCD for ESP32 does not support writing to
|
|
FLASH. This option sets up the liner scripts to support execution
|
|
from IRAM. In this case, OpenOCD can be used to load directly into
|
|
IRAM.
|
|
|
|
endif # ARCH_BOARD_ESP32CORE
|