We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a807b5 commit daa2614Copy full SHA for daa2614
builder/frameworks/espidf.py
@@ -228,8 +228,8 @@ def build_protocomm_lib(sdk_params):
228
for d in src_dirs:
229
src_filter += " +<%s>" % d
230
231
- if is_set("CONFIG_BT_ENABLED", sdk_params) and is_set(
232
- "CONFIG_BLUEDROID_ENABLED", sdk_params):
+ if not (is_set("CONFIG_BT_ENABLED", sdk_params) and is_set(
+ "CONFIG_BLUEDROID_ENABLED", sdk_params)):
233
src_filter += " -<src/simple_ble/simple_ble.c>"
234
src_filter += " -<src/transports/protocomm_ble.c>"
235
@@ -445,6 +445,7 @@ def build_espidf_bootloader():
445
LIBPATH=[
446
join(FRAMEWORK_DIR, "components", "esp32"),
447
join(FRAMEWORK_DIR, "components", "esp32", "ld"),
448
+ join(FRAMEWORK_DIR, "components", "esp32", "ld", "wifi_iram_opt"),
449
join(FRAMEWORK_DIR, "components", "esp32", "lib"),
450
join(FRAMEWORK_DIR, "components", "bt", "lib"),
451
join(FRAMEWORK_DIR, "components", "newlib", "lib"),
platform.json
@@ -55,7 +55,7 @@
55
"framework-espidf": {
56
"type": "framework",
57
"optional": true,
58
- "version": "~3.30200.190418"
+ "version": "~3.30201.190624"
59
},
60
"framework-simba": {
61
0 commit comments