esp32h2: add esp32h2 build target

Add esp32h2 support in the following components:
 * Kconfig
 * components/esptool_py
 * components/riscv
 * components/xtensa
 * tools
This commit is contained in:
Shu Chen
2021-06-08 16:11:35 +08:00
parent 68f33b75de
commit 2b9e8fed71
11 changed files with 40 additions and 5 deletions

View File

@@ -36,6 +36,6 @@ GENERATORS = collections.OrderedDict([
})
])
SUPPORTED_TARGETS = ['esp32', 'esp32s2', 'esp32c3', 'esp32s3']
SUPPORTED_TARGETS = ['esp32', 'esp32s2', 'esp32c3', 'esp32s3', 'esp32h2']
PREVIEW_TARGETS = ['linux']