Skip to content

Commit

Permalink
feat: add esp_timer test binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Jul 2, 2024
1 parent 9dc3628 commit 7c8f6cc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
16 changes: 16 additions & 0 deletions config/components/esp_timer/test_apps/sdkconfig.defaults
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7c8f6cc

Please sign in to comment.