Skip to content

Commit 447b811

Browse files
committed
Remove build flag leading to wdt reset on some boards
1 parent 4350408 commit 447b811

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.vscode/extensions.json

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
{
2-
// See http://go.microsoft.com/fwlink/?LinkId=827846
3-
// for the documentation about the extensions.json format
4-
"recommendations": [
5-
"platformio.platformio-ide"
6-
]
7-
}
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide"
6+
],
7+
"unwantedRecommendations": [
8+
"ms-vscode.cpptools-extension-pack"
9+
]
10+
}

platformio.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ build_flags =
104104
-DBEARSSL_SSL_BASIC
105105
-D CORE_DEBUG_LEVEL=0
106106
-D NDEBUG
107-
-Dregister=
108107
#build_flags for the IRremoteESP8266 library (enabled decoders have to appear here)
109108
-D _IR_ENABLE_DEFAULT_=false
110109
-D DECODE_HASH=true
@@ -183,7 +182,7 @@ build_flags =
183182
-DESP8266
184183
-DFP_IN_IROM
185184
;-Wno-deprecated-declarations
186-
;-Wno-register
185+
-Wno-register
187186
-Wno-misleading-indentation
188187
; NONOSDK22x_190703 = 2.2.2-dev(38a443e)
189188
-DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703

0 commit comments

Comments
 (0)