-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplatformio.ini
46 lines (39 loc) · 1.05 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
; 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
[env]
platform = espressif32
framework = arduino
upload_port = /dev/cu.wchusbserial14142130
upload_speed = 460800
monitor_port = /dev/cu.wchusbserial14142130
monitor_speed = 115200
[env:esp32dev-debug]
build_type = debug
build_flags = -D DEBUG
board = esp32dev
[env:esp32dev-release]
build_flags = -D RELEASE
board = esp32dev
[env:esp32-c3-devkitm-1-debug]
build_type = debug
build_flags = -D DEBUG
board = esp32-c3-devkitm-1
[env:esp32-c3-devkitm-1-release]
build_flags = -D RELEASE
board = esp32-c3-devkitm-1
[env:esp8266-debug]
platform = espressif8266
build_type = debug
build_flags = -D DEBUG
board = esp01_1m
[env:esp8266-release]
platform = espressif8266
build_flags = -D RELEASE
board = esp01_1m