Merge branch 'feature/esp32c3_supported_target' into 'master'

tools/idf.py: promote esp32c3 from preview to supported targets

See merge request espressif/esp-idf!12129
This commit is contained in:
Ivan Grokhotkov
2021-01-29 07:01:50 +08:00

View File

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