diff options
| author | Elliot Matson <ematson5897@gmail.com> | 2023-01-29 21:20:47 -0600 |
|---|---|---|
| committer | Elliot Matson <ematson5897@gmail.com> | 2023-01-29 21:20:47 -0600 |
| commit | 6378731cbcb39da81fdb94aacebe6e99c3f310b6 (patch) | |
| tree | d79afb93699567a7282e892391f9f8e429a67548 | |
| parent | 0f62898bae25753937e4479e525182bd38dc14c9 (diff) | |
Fix sdkconfig
| -rw-r--r-- | .github/workflows/pio_build.yml | 2 | ||||
| -rw-r--r-- | examples/PIO_TestPatterns/sdkconfig.defaults | 3 | ||||
| -rw-r--r-- | examples/PIO_TestPatterns/src/main.cpp | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/pio_build.yml b/.github/workflows/pio_build.yml index edc157c..ed37c86 100644 --- a/.github/workflows/pio_build.yml +++ b/.github/workflows/pio_build.yml @@ -13,7 +13,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-latest continue-on-error: true strategy: matrix: diff --git a/examples/PIO_TestPatterns/sdkconfig.defaults b/examples/PIO_TestPatterns/sdkconfig.defaults index 909461e..ee16cd3 100644 --- a/examples/PIO_TestPatterns/sdkconfig.defaults +++ b/examples/PIO_TestPatterns/sdkconfig.defaults @@ -15,4 +15,5 @@ CONFIG_ARDUHAL_PARTITION_SCHEME="default" CONFIG_AUTOCONNECT_WIFI=y CONFIG_ARDUINO_SELECTIVE_WiFi=y CONFIG_MBEDTLS_PSK_MODES=y -CONFIG_MBEDTLS_KEY_EXCHANGE_PSK=y
\ No newline at end of file +CONFIG_MBEDTLS_KEY_EXCHANGE_PSK=y +CONFIG_FREERTOS_HZ=1000
\ No newline at end of file diff --git a/examples/PIO_TestPatterns/src/main.cpp b/examples/PIO_TestPatterns/src/main.cpp index cb132e3..e8611ae 100644 --- a/examples/PIO_TestPatterns/src/main.cpp +++ b/examples/PIO_TestPatterns/src/main.cpp @@ -8,6 +8,7 @@ #include <freertos/task.h> #include <driver/gpio.h> #include "sdkconfig.h" +// IDF #include <Arduino.h> #include "xtensa/core-macros.h" |
