Skip to content

Commit

Permalink
fix(ci): Fix/stop some examples for C5
Browse files Browse the repository at this point in the history
  • Loading branch information
me-no-dev committed Jan 22, 2025
1 parent 799f873 commit c03e748
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 5 deletions.
3 changes: 2 additions & 1 deletion libraries/ESP32/examples/DeepSleep/ExternalWakeUp/ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"esp32c3": false,
"esp32c6": false,
"esp32h2": false,
"esp32p4": false
"esp32p4": false,
"esp32c5": false
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"esp32h2": false,
"esp32p4": false,
"esp32s2": false,
"esp32s3": false
"esp32s3": false,
"esp32c5": false
}
}
3 changes: 2 additions & 1 deletion libraries/ESP32/examples/DeepSleep/TouchWakeUp/ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"targets": {
"esp32c3": false,
"esp32c6": false,
"esp32h2": false
"esp32h2": false,
"esp32c5": false
}
}
2 changes: 1 addition & 1 deletion libraries/ESP32/examples/RMT/RMTLoopback/RMTLoopback.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
*/

#if CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2 || CONFIG_IDF_TARGET_ESP32P4
#if CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2 || CONFIG_IDF_TARGET_ESP32P4 || CONFIG_IDF_TARGET_ESP32C5
// ESP32 C3 has only 2 channels for RX and 2 for TX, thus MAX RMT_MEM is 128
#define RMT_TX_PIN 4
#define RMT_RX_PIN 5
Expand Down
5 changes: 5 additions & 0 deletions libraries/ESP32/examples/TWAI/TWAIreceive/ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"targets": {
"esp32c5": false
}
}
5 changes: 5 additions & 0 deletions libraries/ESP32/examples/TWAI/TWAItransmit/ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"targets": {
"esp32c5": false
}
}
3 changes: 2 additions & 1 deletion libraries/ESP_SR/examples/Basic/ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"esp32c6": false,
"esp32h2": false,
"esp32p4": false,
"esp32s2": false
"esp32s2": false,
"esp32c5": false
}
}

0 comments on commit c03e748

Please sign in to comment.