feat(esp32c5): add esp32c5 target in kconfig and tools

This commit is contained in:
wanglei
2023-11-09 17:18:39 +08:00
committed by laokaiyao
parent dbe08fbaae
commit 076aefce74
5 changed files with 33 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ if os.name != 'nt':
URL_TO_DOC = 'https://docs.espressif.com/projects/esp-idf'
SUPPORTED_TARGETS = ['esp32', 'esp32s2', 'esp32c3', 'esp32s3', 'esp32c2', 'esp32c6', 'esp32h2']
PREVIEW_TARGETS = ['linux', 'esp32p4']
PREVIEW_TARGETS = ['linux', 'esp32p4', 'esp32c5']
OPENOCD_TAGET_CONFIG_DEFAULT = '-f interface/ftdi/esp32_devkitj_v1.cfg -f target/{target}.cfg'
OPENOCD_TAGET_CONFIG: Dict[str, str] = {
@@ -42,5 +42,6 @@ OPENOCD_TAGET_CONFIG: Dict[str, str] = {
'esp32c3': '-f board/esp32c3-builtin.cfg',
'esp32s3': '-f board/esp32s3-builtin.cfg',
'esp32c6': '-f board/esp32c6-builtin.cfg',
'esp32c5': '-f board/esp32c5-builtin.cfg',
'esp32h2': '-f board/esp32h2-builtin.cfg',
}