esp-idf/tools/test_apps/system/startup
Ivan Grokhotkov f4ea9d4cea freertos: increase configMINIMAL_STACK_SIZE when building with -O0
FreeRTOS scheduler uses additional stack space, as in some functions
variables are placed onto the stack instead of registers.

This issue resulted in occasional stack overflows in dport task, when
compiling at -O0 optimization level.

- Increase the configMINIMAL_STACK_SIZE to 1kB.
- Enable the watchpoint at the end of stack in CI startup test for
  this optimization level.
2020-06-02 18:51:16 +02:00
..
main
CMakeLists.txt
README.txt
app_test.py
sdkconfig.ci.default
sdkconfig.ci.flash_80m_qio
sdkconfig.ci.no_vfs
sdkconfig.ci.no_vfs_partial
sdkconfig.ci.opt_o0 freertos: increase configMINIMAL_STACK_SIZE when building with -O0 2020-06-02 18:51:16 +02:00

README.txt

This project tests if the app can start up in a certain configuration.
To add new configuration, create one more sdkconfig.ci.NAME file in this directory.

If you need to test for anything other than app starting up, create another test project.