Skip to content

Commit

Permalink
feat: add esp_driver_i2s and twai test binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Jun 29, 2024
1 parent 736b692 commit d235cde
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/sh

ALL_CHIPS="esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6 esp32h2 esp32p4"
ALL_CHIP_BUT_C2="esp32 esp32s2 esp32s3 esp32c3 esp32c6 esp32h2 esp32p4"

build() {
IDF_VERSION="$1"
Expand Down Expand Up @@ -44,6 +45,8 @@ for APP in $APPS; do
fi
done

build latest components/driver/test_apps/twai "$ALL_CHIP_BUT_C2"
build latest components/esp_driver_i2s/test_apps/i2s "$ALL_CHIP_BUT_C2"
build latest components/esp_driver_ledc/test_apps/ledc "$ALL_CHIPS"
build latest components/esp_driver_pcnt/test_apps/pulse_cnt "esp32 esp32s2 esp32s3 esp32c6 esp32h2 esp32p4"
build latest components/esp_driver_spi/test_apps/master "$ALL_CHIPS"
Expand Down
4 changes: 4 additions & 0 deletions config/components/driver/test_apps/twai/sdkconfig.defaults
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=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_I2S_ENABLE_DEBUG_LOG=y
CONFIG_ESP_TASK_WDT_EN=n

0 comments on commit d235cde

Please sign in to comment.