diff --git a/build.sh b/build.sh index 59aa9a86..e593aecf 100755 --- a/build.sh +++ b/build.sh @@ -53,6 +53,7 @@ build latest components/esp_driver_pcnt/test_apps/pulse_cnt "esp32 esp32s2 esp32 build latest components/esp_driver_spi/test_apps/master "$ALL_CHIPS" build latest components/esp_driver_uart/test_apps/uart "$ALL_CHIPS" build latest components/esp_psram/test_apps/psram "esp32 esp32s2 esp32s3 esp32p4" +build latest components/esp_timer/test_apps "$ALL_CHIPS" build latest components/esp_wifi/test_apps/wifi_function "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6" build latest components/hal/test_apps/crypto "$ALL_CHIPS" build latest components/mbedtls/test_apps "$ALL_CHIPS" diff --git a/config/components/esp_timer/test_apps/sdkconfig.defaults b/config/components/esp_timer/test_apps/sdkconfig.defaults new file mode 100644 index 00000000..b0a62bd9 --- /dev/null +++ b/config/components/esp_timer/test_apps/sdkconfig.defaults @@ -0,0 +1,16 @@ +CONFIG_APP_REPRODUCIBLE_BUILD=y +# CONFIG_APP_COMPILE_TIME_DATE is not set +# General options for additional checks +CONFIG_HEAP_POISONING_COMPREHENSIVE=y +CONFIG_COMPILER_WARN_WRITE_STRINGS=y +CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y +CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK=y +CONFIG_COMPILER_STACK_CHECK_MODE_STRONG=y +CONFIG_COMPILER_STACK_CHECK=y + +CONFIG_ESP_TASK_WDT_INIT=n + +CONFIG_FREERTOS_HZ=1000 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=8192 + +CONFIG_ESP_TIMER_PROFILING=y