From e70d534566c1a9acc7da55551e133ed470b72edd Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Sun, 24 Jan 2021 13:28:11 +0100 Subject: [PATCH] tools/idf.py: promote esp32c3 from preview to supported target --- tools/idf_py_actions/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/idf_py_actions/constants.py b/tools/idf_py_actions/constants.py index 19a26475e8..fea9537eda 100644 --- a/tools/idf_py_actions/constants.py +++ b/tools/idf_py_actions/constants.py @@ -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']