From 1f580e3f0e245f3c43ebb3bd5305a015da74a5e5 Mon Sep 17 00:00:00 2001 From: "Michael (XIAO Xufeng)" Date: Thu, 22 Aug 2019 17:45:16 +0800 Subject: [PATCH] idf.py add support for esp32s2beta --- tools/idf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf.py b/tools/idf.py index 3b911acc1..c11704e78 100755 --- a/tools/idf.py +++ b/tools/idf.py @@ -81,7 +81,7 @@ GENERATORS = [ GENERATOR_CMDS = dict((a[0], a[1]) for a in GENERATORS) GENERATOR_VERBOSE = dict((a[0], a[3]) for a in GENERATORS) -SUPPORTED_TARGETS = ["esp32"] +SUPPORTED_TARGETS = ["esp32", "esp32s2beta"] def _run_tool(tool_name, args, cwd):