Merge branch 'bugfix/s3_dfu_tool_v4.4' into 'release/v4.4'

dfu: add esp32s3 to supported DFU targets for idf.py (v4.4)

See merge request espressif/esp-idf!19166
This commit is contained in:
Roland Dobai
2022-08-03 22:48:44 +08:00

View File

@ -4,7 +4,7 @@ from idf_py_actions.tools import ensure_build_directory, is_target_supported, ru
def action_extensions(base_actions, project_path):
SUPPORTED_TARGETS = ['esp32s2']
SUPPORTED_TARGETS = ['esp32s2', 'esp32s3']
def dfu_target(target_name, ctx, args, part_size):
ensure_build_directory(args, ctx.info_name)