2022-09-19 00:05:30 -04:00
|
|
|
# Configs
|
|
|
|
|
|
|
|
Certain combinations of configs, e.g. stack and heap debug configs, are useful to set in most test apps.
|
|
|
|
|
|
|
|
To facilitiate re-use, this folder contains some of the most common ones.
|
|
|
|
|
|
|
|
These can then be added to the list of default configs in test apps:
|
|
|
|
|
|
|
|
```
|
2023-04-24 00:33:54 -04:00
|
|
|
list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults")
|
2022-09-19 00:05:30 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Note that this must be set in the top-level project `CMakelist.txt`.
|
|
|
|
|
|
|
|
These files should not be considered stable, and are thus not recommended for use outside of IDF.
|