From 0ed7af2c4c7976271844b23f2bde18c538c09c1d Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Tue, 18 May 2021 11:37:21 +0700 Subject: [PATCH] tools: promote ESP32-S3 from preview to supported target --- tools/ci/mypy_ignore_list.txt | 1 - tools/idf_py_actions/constants.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/ci/mypy_ignore_list.txt b/tools/ci/mypy_ignore_list.txt index 0bfbbe2e9d..8160084a5d 100644 --- a/tools/ci/mypy_ignore_list.txt +++ b/tools/ci/mypy_ignore_list.txt @@ -223,7 +223,6 @@ tools/find_build_apps/make.py tools/gdb_panic_server.py tools/gen_esp_err_to_name.py tools/idf.py -tools/idf_py_actions/constants.py tools/idf_py_actions/core_ext.py tools/idf_py_actions/create_ext.py tools/idf_py_actions/debug_ext.py diff --git a/tools/idf_py_actions/constants.py b/tools/idf_py_actions/constants.py index fea9537eda..06d02ed476 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', 'esp32c3'] +SUPPORTED_TARGETS = ['esp32', 'esp32s2', 'esp32c3', 'esp32s3'] -PREVIEW_TARGETS = ['esp32s3', 'linux'] +PREVIEW_TARGETS = ['linux']