Skip to content

Commit

Permalink
feat: add esp_driver_gptimer test binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Jul 3, 2024
1 parent 8ab1844 commit 28f20c6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ for APP in $APPS; do
done

build latest components/driver/test_apps/twai "$ALL_CHIPS_BUT_C2"
build latest components/esp_driver_gptimer/test_apps/gptimer "$ALL_CHIPS"
build latest components/esp_driver_i2c/test_apps/i2c_test_apps "$ALL_CHIPS"
build latest components/esp_driver_i2s/test_apps/i2s "$ALL_CHIPS_BUT_C2"
build latest components/esp_driver_ledc/test_apps/ledc "$ALL_CHIPS"
Expand All @@ -64,4 +65,4 @@ build latest examples/peripherals/ledc/ledc_basic "$ALL_CHIPS"
build latest examples/peripherals/rmt/led_strip "$ALL_CHIPS"
build latest examples/peripherals/spi_slave/sender "$ALL_CHIPS"
build latest examples/peripherals/usb_serial_jtag/usb_serial_jtag_echo "esp32s3 esp32c3 esp32c6 esp32h2 esp32p4"
build latest examples/peripherals/usb/device/tusb_console "esp32s2 esp32s3 esp32p4"
build latest examples/peripherals/usb/device/tusb_console "esp32s2 esp32s3 esp32p4"
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CONFIG_APP_REPRODUCIBLE_BUILD=y
# CONFIG_APP_COMPILE_TIME_DATE is not set
# CONFIG_ESP_TASK_WDT_INIT is not set
CONFIG_FREERTOS_HZ=1000
# Disable nano printf, because we need to print the timer count in %llu format
CONFIG_NEWLIB_NANO_FORMAT=n

# primitives for checking sleep internal state
CONFIG_ESP_SLEEP_DEBUG=y

0 comments on commit 28f20c6

Please sign in to comment.