Skip to content

Commit 44f6aa9

Browse files
committed
fixed buildability with latest PlatformIO/arduino-espressif32
1 parent 6de479b commit 44f6aa9

File tree

11 files changed

+339
-1070
lines changed

11 files changed

+339
-1070
lines changed

.pio/build/project.checksum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ad957e164dc56a56e3c6055a1cc4c6c97ef954c1

.vscode/c_cpp_properties.json

Lines changed: 225 additions & 0 deletions
Large diffs are not rendered by default.

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,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+
}

.vscode/launch.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// AUTOMATICALLY GENERATED FILE. PLEASE DO NOT MODIFY IT MANUALLY
2+
3+
// PIO Unified Debugger
4+
//
5+
// Documentation: https://docs.platformio.org/page/plus/debugging.html
6+
// Configuration: https://docs.platformio.org/page/projectconf/section_env_debug.html
7+
8+
{
9+
"version": "0.2.0",
10+
"configurations": [
11+
{
12+
"type": "platformio-debug",
13+
"request": "launch",
14+
"name": "PIO Debug",
15+
"executable": "/Users/sychram/Repositories/thinx-firmware-esp32-pio/.pio/build/esp32/firmware.elf",
16+
"toolchainBinDir": "/Users/sychram/.platformio/packages/toolchain-xtensa32/bin",
17+
"preLaunchTask": {
18+
"type": "PlatformIO",
19+
"task": "Pre-Debug"
20+
},
21+
"internalConsoleOptions": "openOnSessionStart"
22+
},
23+
{
24+
"type": "platformio-debug",
25+
"request": "launch",
26+
"name": "PIO Debug (skip Pre-Debug)",
27+
"executable": "/Users/sychram/Repositories/thinx-firmware-esp32-pio/.pio/build/esp32/firmware.elf",
28+
"toolchainBinDir": "/Users/sychram/.platformio/packages/toolchain-xtensa32/bin",
29+
"internalConsoleOptions": "openOnSessionStart"
30+
}
31+
]
32+
}

platformio.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
; http://docs.platformio.org/page/projectconf.html
1010

1111
[platformio]
12+
core_dir = ~/.platformio
1213
; env_default=esp32
1314
src_dir=thinx-esp32-example
1415
lib_dir=lib

0 commit comments

Comments
 (0)