Skip to content

Commit

Permalink
Update ci.py (#110)
Browse files Browse the repository at this point in the history
Typo fix for ESP32-S3 boards array name
  • Loading branch information
dronecz committed Jun 12, 2024
1 parent d4645f4 commit 5d2571e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#"esp32-4827S043R-SD",
]

ESP_C3_CHIPS = [
ESP_S3_CHIPS = [
"esp32-8048S043C-SD",
"esp32-4827S043C-SD",
]
Expand All @@ -25,7 +25,7 @@ def get_manifest(base_path : str, device_name : str):
"new_install_prompt_erase": True,
"builds": [
{
"chipFamily": "ESP32-S3" if device_name in ESP_C3_CHIPS else "ESP32",
"chipFamily": "ESP32-S3" if device_name in ESP_S3_CHIPS else "ESP32",
"parts": [
{
"path": f"{base_path}/bootloader.bin",
Expand Down

0 comments on commit 5d2571e

Please sign in to comment.