tools: promote ESP32-S3 from preview to supported target

This commit is contained in:
Anton Maklakov 2021-05-18 11:37:21 +07:00
parent 4bb09900ab
commit 0ed7af2c4c
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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']