feat(tools): add c5, c61 into supported targets list

This commit is contained in:
Xiao Xufeng
2025-08-29 14:40:25 +08:00
parent d544ed0d21
commit 6049a4a1c2
4 changed files with 47 additions and 26 deletions

View File

@@ -27,6 +27,9 @@ def test_roms_check_supported_chips() -> None:
with open(ROMS_JSON, 'r') as f:
roms_json = json.load(f)
for chip in SUPPORTED_TARGETS:
if chip in ['esp32c5', 'esp32c61']:
# IDFCI-3109
continue
assert chip in roms_json, f'Have no ROM data for chip {chip}'