summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAlex Lisitsyn <[email protected]>2021-03-09 11:29:07 +0100
committerAlex Lisitsyn <[email protected]>2021-04-16 13:38:00 +0200
commit2f0cb8b5f1a944187635a58a748ed08738d324a5 (patch)
tree72948ac73b578aa315d37486f04fc2c3351ab9aa /tools
parentc611199632b9288eff76c1c4bfdce5d8cc024748 (diff)
tinyusb: add support of esp32s3 target
add support of new esp32s3 target and the board update the roles.mk wrapper to allow dfu flashing of espressif chip update examples to allow compilation for esp32s3_addax_1 board once the code is tested the PR to original tinyusb repo will be submitted
Diffstat (limited to 'tools')
-rw-r--r--tools/build_esp32sx.py (renamed from tools/build_esp32s2.py)2
-rw-r--r--tools/build_family.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/build_esp32s2.py b/tools/build_esp32sx.py
index 0ef05023c..82352c269 100644
--- a/tools/build_esp32s2.py
+++ b/tools/build_esp32sx.py
@@ -35,7 +35,7 @@ all_examples.sort()
# Build all boards if not specified
all_boards = []
-for entry in os.scandir("hw/bsp/esp32s2/boards"):
+for entry in os.scandir("hw/bsp/esp32sx/boards"):
if entry.is_dir():
all_boards.append(entry.name)
filter_with_input(all_boards)
diff --git a/tools/build_family.py b/tools/build_family.py
index 65d0e8fc2..35a61f97a 100644
--- a/tools/build_family.py
+++ b/tools/build_family.py
@@ -38,7 +38,7 @@ all_examples.sort()
# If family are not specified in arguments, build all
all_families = []
for entry in os.scandir("hw/bsp"):
- if entry.is_dir() and os.path.isdir(entry.path + "/boards") and entry.name != "esp32s2":
+ if entry.is_dir() and os.path.isdir(entry.path + "/boards") and entry.name != "esp32sx":
all_families.append(entry.name)
filter_with_input(all_families)