esp-idf/Kconfig

246 wiersze
9.7 KiB
Plaintext
Czysty Zwykły widok Historia

2016-08-17 15:08:22 +00:00
#
# For a description of the syntax of this configuration file,
# see kconfig/kconfig-language.txt.
#
mainmenu "Espressif IoT Development Framework Configuration"
2016-08-17 15:08:22 +00:00
# Hidden option to support checking for this specific target in C code and Kconfig files
config IDF_TARGET_ESP32
bool
default "y" if IDF_TARGET="esp32"
default "n"
2018-12-06 14:08:18 +00:00
config IDF_CMAKE
bool
option env="IDF_CMAKE"
config IDF_TARGET_ENV
# A proxy to get environment variable $IDF_TARGET
string
option env="IDF_TARGET"
config IDF_TARGET
# This option records the IDF target when sdkconfig is generated the first time.
# It is not updated if environment variable $IDF_TARGET changes later, and
# the build system is responsible for detecting the mismatch between
# CONFIG_IDF_TARGET and $IDF_TARGET.
string
default "IDF_TARGET_NOT_SET" if IDF_TARGET_ENV=""
default IDF_TARGET_ENV
2019-04-03 09:08:02 +00:00
config IDF_TARGET_ESP32
bool
2019-04-08 10:02:05 +00:00
default "y" if IDF_TARGET="esp32"
default "n"
2019-04-03 09:08:02 +00:00
config IDF_TARGET_ESP32S2BETA
bool
2019-04-08 10:02:05 +00:00
default "y" if IDF_TARGET="esp32s2beta"
default "n"
select FREERTOS_UNICORE
2018-12-06 14:08:18 +00:00
menu "SDK tool configuration"
config SDK_TOOLPREFIX
2018-12-06 14:08:18 +00:00
string "Compiler toolchain path/prefix"
2019-04-03 11:43:37 +00:00
default "xtensa-esp32-elf-" if IDF_TARGET_ESP32
default "xtensa-esp32s2-elf-" if IDF_TARGET_ESP32S2BETA
2018-12-06 14:08:18 +00:00
help
The prefix/path that is used to call the toolchain. The default setting assumes
a crosstool-ng gcc setup that is in your PATH.
config SDK_PYTHON
2018-12-06 14:08:18 +00:00
string "Python 2 interpreter"
depends on !IDF_CMAKE
default "python"
help
The executable name/path that is used to run python. On some systems Python 2.x
may need to be invoked as python2.
(Note: This option is used with the legacy GNU Make build system only.)
2018-12-06 14:08:18 +00:00
config SDK_MAKE_WARN_UNDEFINED_VARIABLES
2018-12-06 14:08:18 +00:00
bool "'make' warns on undefined variables"
depends on !IDF_CMAKE
2018-12-06 14:08:18 +00:00
default "y"
help
Adds --warn-undefined-variables to MAKEFLAGS. This causes make to
print a warning any time an undefined variable is referenced.
This option helps find places where a variable reference is misspelled
or otherwise missing, but it can be unwanted if you have Makefiles which
depend on undefined variables expanding to an empty string.
(Note: this option is used with the legacy GNU Make build system only.)
2018-12-06 14:08:18 +00:00
endmenu # SDK tool configuration
source "$COMPONENT_KCONFIGS_PROJBUILD"
menu "Compiler options"
2019-04-24 13:02:25 +00:00
choice COMPILER_OPTIMIZATION
2018-12-06 14:08:18 +00:00
prompt "Optimization Level"
2019-04-24 13:02:25 +00:00
default COMPILER_OPTIMIZATION_LEVEL_DEBUG
2018-12-06 14:08:18 +00:00
help
This option sets compiler optimization level (gcc -O argument).
- for "Release" setting, -Os flag is added to CFLAGS.
- for "Debug" setting, -Og flag is added to CFLAGS.
"Release" with -Os produces smaller & faster compiled code but it
may be harder to correlated code addresses to source files when debugging.
To add custom optimization settings, set CFLAGS and/or CPPFLAGS
in project makefile, before including $(IDF_PATH)/make/project.mk. Note that
custom optimization levels may be unsupported.
2019-04-24 13:02:25 +00:00
config COMPILER_OPTIMIZATION_LEVEL_DEBUG
2018-12-06 14:08:18 +00:00
bool "Debug (-Og)"
2019-04-24 13:02:25 +00:00
config COMPILER_OPTIMIZATION_LEVEL_RELEASE
2018-12-06 14:08:18 +00:00
bool "Release (-Os)"
endchoice
2019-04-24 13:02:25 +00:00
choice COMPILER_OPTIMIZATION_ASSERTION_LEVEL
2018-12-06 14:08:18 +00:00
prompt "Assertion level"
2019-04-24 13:02:25 +00:00
default COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE
2018-12-06 14:08:18 +00:00
help
Assertions can be:
- Enabled. Failure will print verbose assertion details. This is the default.
- Set to "silent" to save code size (failed assertions will abort() but user
needs to use the aborting address to find the line number with the failed assertion.)
- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added
to CPPFLAGS in this case.
2019-04-24 13:02:25 +00:00
config COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE
2018-12-06 14:08:18 +00:00
prompt "Enabled"
bool
help
Enable assertions. Assertion content and line number will be printed on failure.
2019-04-24 13:02:25 +00:00
config COMPILER_OPTIMIZATION_ASSERTIONS_SILENT
2018-12-06 14:08:18 +00:00
prompt "Silent (saves code size)"
bool
help
Enable silent assertions. Failed assertions will abort(), user needs to
use the aborting address to find the line number with the failed assertion.
2019-04-24 13:02:25 +00:00
config COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE
2018-12-06 14:08:18 +00:00
prompt "Disabled (sets -DNDEBUG)"
bool
help
If assertions are disabled, -DNDEBUG is added to CPPFLAGS.
endchoice # assertions
2019-04-24 13:02:25 +00:00
menuconfig COMPILER_CXX_EXCEPTIONS
2018-12-06 14:08:18 +00:00
bool "Enable C++ exceptions"
default n
help
Enabling this option compiles all IDF C++ files with exception support enabled.
Disabling this option disables C++ exception support in all compiled files, and any libstdc++ code
which throws an exception will abort instead.
Enabling this option currently adds an additional ~500 bytes of heap overhead
when an exception is thrown in user code for the first time.
2019-04-24 13:02:25 +00:00
config COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE
2018-12-06 14:08:18 +00:00
int "Emergency Pool Size"
default 0
2019-04-24 13:02:25 +00:00
depends on COMPILER_CXX_EXCEPTIONS
2018-12-06 14:08:18 +00:00
help
Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate
memory for thrown exceptions when there is not enough memory on the heap.
2019-04-24 13:02:25 +00:00
choice COMPILER_STACK_CHECK_MODE
2018-12-06 14:08:18 +00:00
prompt "Stack smashing protection mode"
2019-04-24 13:02:25 +00:00
default COMPILER_STACK_CHECK_MODE_NONE
2018-12-06 14:08:18 +00:00
help
Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack
smashing attacks. This is done by adding a guard variable to functions with vulnerable objects.
The guards are initialized when a function is entered and then checked when the function exits.
If a guard check fails, program is halted. Protection has the following modes:
- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with
buffers larger than 8 bytes are protected.
- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions
to be protected -- those that have local array definitions, or have references to local frame
addresses.
- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.
Modes have the following impact on code performance and coverage:
- performance: NORMAL > STRONG > OVERALL
- coverage: NORMAL < STRONG < OVERALL
2019-04-24 13:02:25 +00:00
config COMPILER_STACK_CHECK_MODE_NONE
2018-12-06 14:08:18 +00:00
bool "None"
2019-04-24 13:02:25 +00:00
config COMPILER_STACK_CHECK_MODE_NORM
2018-12-06 14:08:18 +00:00
bool "Normal"
2019-04-24 13:02:25 +00:00
config COMPILER_STACK_CHECK_MODE_STRONG
2018-12-06 14:08:18 +00:00
bool "Strong"
2019-04-24 13:02:25 +00:00
config COMPILER_STACK_CHECK_MODE_ALL
2018-12-06 14:08:18 +00:00
bool "Overall"
endchoice
2019-04-24 13:02:25 +00:00
config COMPILER_STACK_CHECK
2018-12-06 14:08:18 +00:00
bool
2019-04-24 13:02:25 +00:00
default !COMPILER_STACK_CHECK_MODE_NONE
2018-12-06 14:08:18 +00:00
help
Stack smashing protection.
2019-04-24 13:02:25 +00:00
config COMPILER_WARN_WRITE_STRINGS
2018-12-06 14:08:18 +00:00
bool "Enable -Wwrite-strings warning flag"
default "n"
help
Adds -Wwrite-strings flag for the C/C++ compilers.
For C, this gives string constants the type ``const char[]`` so that
copying the address of one into a non-const ``char *`` pointer
produces a warning. This warning helps to find at compile time code
that tries to write into a string constant.
For C++, this warns about the deprecated conversion from string
literals to ``char *``.
2019-04-24 13:02:25 +00:00
config COMPILER_DISABLE_GCC8_WARNINGS
2018-12-06 14:08:18 +00:00
bool "Disable new warnings introduced in GCC 6 - 8"
default "n"
help
Enable this option if using GCC 6 or newer, and wanting to disable warnings which don't appear with
GCC 5.
endmenu # Compiler Options
menu "Component config"
source "$COMPONENT_KCONFIGS"
endmenu
global: move the soc component out of the common list This MR removes the common dependency from every IDF components to the SOC component. Currently, in the ``idf_functions.cmake`` script, we include the header path of SOC component by default for all components. But for better code organization (or maybe also benifits to the compiling speed), we may remove the dependency to SOC components for most components except the driver and kernel related components. In CMAKE, we have two kinds of header visibilities (set by include path visibility): (Assume component A --(depends on)--> B, B is the current component) 1. public (``COMPONENT_ADD_INCLUDEDIRS``): means this path is visible to other depending components (A) (visible to A and B) 2. private (``COMPONENT_PRIV_INCLUDEDIRS``): means this path is only visible to source files inside the component (visible to B only) and we have two kinds of depending ways: (Assume component A --(depends on)--> B --(depends on)--> C, B is the current component) 1. public (```COMPONENT_REQUIRES```): means B can access to public include path of C. All other components rely on you (A) will also be available for the public headers. (visible to A, B) 2. private (``COMPONENT_PRIV_REQUIRES``): means B can access to public include path of C, but don't propagate this relation to other components (A). (visible to B) 1. remove the common requirement in ``idf_functions.cmake``, this makes the SOC components invisible to all other components by default. 2. if a component (for example, DRIVER) really needs the dependency to SOC, add a private dependency to SOC for it. 3. some other components that don't really depends on the SOC may still meet some errors saying "can't find header soc/...", this is because it's depended component (DRIVER) incorrectly include the header of SOC in its public headers. Moving all this kind of #include into source files, or private headers 4. Fix the include requirements for some file which miss sufficient #include directives. (Previously they include some headers by the long long long header include link) This is a breaking change. Previous code may depends on the long include chain. You may need to include the following headers for some files after this commit: - soc/soc.h - soc/soc_memory_layout.h - driver/gpio.h - esp_sleep.h The major broken include chain includes: 1. esp_system.h no longer includes esp_sleep.h. The latter includes driver/gpio.h and driver/touch_pad.h. 2. ets_sys.h no longer includes soc/soc.h 3. freertos/portmacro.h no longer includes soc/soc_memory_layout.h some peripheral headers no longer includes their hw related headers, e.g. rom/gpio.h no longer includes soc/gpio_pins.h and soc/gpio_reg.h BREAKING CHANGE
2019-04-03 05:17:38 +00:00
menu "Compatibility options"
config LEGACY_INCLUDE_COMMON_HEADERS
bool "Include headers accross components as before IDF v4.0"
default n
help
Soc, esp32, and driver components, the most common
components. Some header of these components are included
implicitly by headers of other components before IDF v4.0.
It's not required for high-level components, but still
included through long header chain everywhere.
This is harmful to the modularity. So it's changed in IDF
v4.0.
You can still include these headers in a legacy way until it
is totally deprecated by enable this option.
2019-04-24 13:02:25 +00:00
endmenu #Compatibility options