From fbbcf5c5bc21cf823e135264d436911189558072 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 11 Jul 2022 15:58:21 +0800 Subject: [PATCH] dfu: add esp32s3 to supported DFU targets for idf.py --- tools/idf_py_actions/dfu_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_py_actions/dfu_ext.py b/tools/idf_py_actions/dfu_ext.py index f637a36534..cdaeb641f7 100644 --- a/tools/idf_py_actions/dfu_ext.py +++ b/tools/idf_py_actions/dfu_ext.py @@ -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)