Skip to content

Commit daa2614

Browse files
committed
Update esp-idf framework to v3.2.1
1 parent 0a807b5 commit daa2614

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

builder/frameworks/espidf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ def build_protocomm_lib(sdk_params):
228228
for d in src_dirs:
229229
src_filter += " +<%s>" % d
230230

231-
if is_set("CONFIG_BT_ENABLED", sdk_params) and is_set(
232-
"CONFIG_BLUEDROID_ENABLED", sdk_params):
231+
if not (is_set("CONFIG_BT_ENABLED", sdk_params) and is_set(
232+
"CONFIG_BLUEDROID_ENABLED", sdk_params)):
233233
src_filter += " -<src/simple_ble/simple_ble.c>"
234234
src_filter += " -<src/transports/protocomm_ble.c>"
235235

@@ -445,6 +445,7 @@ def build_espidf_bootloader():
445445
LIBPATH=[
446446
join(FRAMEWORK_DIR, "components", "esp32"),
447447
join(FRAMEWORK_DIR, "components", "esp32", "ld"),
448+
join(FRAMEWORK_DIR, "components", "esp32", "ld", "wifi_iram_opt"),
448449
join(FRAMEWORK_DIR, "components", "esp32", "lib"),
449450
join(FRAMEWORK_DIR, "components", "bt", "lib"),
450451
join(FRAMEWORK_DIR, "components", "newlib", "lib"),

platform.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"framework-espidf": {
5656
"type": "framework",
5757
"optional": true,
58-
"version": "~3.30200.190418"
58+
"version": "~3.30201.190624"
5959
},
6060
"framework-simba": {
6161
"type": "framework",

0 commit comments

Comments
 (0)