-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
39 lines (35 loc) · 1.17 KB
/
platformio.ini
File metadata and controls
39 lines (35 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
description = esp32 c++ V17 Project for manage settings
; Keep build artifacts out of the library repository.
; This avoids recursive local installs when using lib_deps = ../..
build_dir = ${sysenv.HOME}/.pio/CM/ex/Full-IO-Demo
libdeps_dir = ${sysenv.HOME}/.pio/CM/ex/Full-IO-Demo/libdeps
[env:usb]
platform = espressif32
board = nodemcu-32s
framework = arduino
monitor_speed = 115200
;build_unflags = -std=gnu++11 ;required, to deactivate old default
build_unflags = -std=gnu++11
build_flags =
-Wno-deprecated-declarations
-std=gnu++17
-DCM_ENABLE_LOGGING=0
-DCM_ENABLE_VERBOSE_LOGGING=0
extra_scripts =
pre:../../tools/pio_force_local_lib_refresh.py
pre:../../tools/preCompile_script.py
lib_deps =
bblanchon/ArduinoJson@~7.4.1
esphome/ESPAsyncWebServer-esphome@~3.2.2
esphome/AsyncTCP-esphome@2.1.4
../..