-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplatformio.ini
62 lines (53 loc) · 1.25 KB
/
platformio.ini
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
; 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
; >>> DO NOT EDIT THIS FILE <<<
; All changes must be made in the 'platformio_local.ini' file.
; The default contents of this file are:
;
;[env]
;upload_port = COM3
;upload_speed = 921600
;monitor_port = COM3
;build_flags =
; ;-DUSE_EMULATOR
; ;-DNO_CAN_SEND
;
[platformio]
extra_configs = platformio_local.ini
[env]
platform = espressif32
board = nodemcu-32s
framework = arduino
lib_deps =
https://github.com/starfactorypixel/PixelLoggerLibrary
https://github.com/Dragon-Knight/Library_EasyPin_ESP32
board_build.partitions = huge_app.csv
;upload_port = COM3
;upload_speed = 921600
;monitor_port = COM3
monitor_speed = 500000
;build_flags =
; ;-DUSE_EMULATOR
; ;-DNO_CAN_SEND
[env:Debug]
build_type = debug
build_flags =
${env.build_flags}
-DCORE_DEBUG_LEVEL=4
-DDEBUG
-Og
[env:Release]
build_type = release
build_unflags =
-Os
build_flags =
${env.build_flags}
-DCORE_DEBUG_LEVEL=0
-O2