Skip to content

Commit

Permalink
feat: add esp_driver_ledc and esp_driver_pcnt test binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Jun 13, 2024
1 parent 43a6a14 commit 36e9b8b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ build latest examples/peripherals/i2c/i2c_simple "$ALL_CHIPS"
build latest examples/peripherals/spi_slave/sender "$ALL_CHIPS"
build latest components/mbedtls/test_apps "$ALL_CHIPS"
build latest components/hal/test_apps/crypto "$ALL_CHIPS"
build latest components/esp_driver_ledc/test_apps/ledc "$ALL_CHIPS"
build latest components/esp_psram/test_apps/psram "esp32 esp32s2 esp32s3 esp32p4"
build latest components/esp_driver_pcnt/test_apps/pulse_cnt "esp32 esp32s2 esp32s3 esp32c6 esp32h2 esp32p4"
build latest examples/peripherals/rmt/led_strip "$ALL_CHIPS"
build latest examples/peripherals/ledc/ledc_basic "$ALL_CHIPS"
build latest examples/peripherals/adc/oneshot_read "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6 esp32h2"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONFIG_APP_REPRODUCIBLE_BUILD=y
# CONFIG_APP_COMPILE_TIME_DATE is not set
CONFIG_FREERTOS_HZ=1000
CONFIG_ESP_TASK_WDT_INIT=n
# Disable memory protection, because "LEDC continue work after software reset" test case requires a cpu reset
CONFIG_ESP_SYSTEM_MEMPROT_FEATURE=n
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CONFIG_APP_REPRODUCIBLE_BUILD=y
# CONFIG_APP_COMPILE_TIME_DATE is not set
CONFIG_FREERTOS_HZ=1000
CONFIG_ESP_TASK_WDT_EN=n

0 comments on commit 36e9b8b

Please sign in to comment.