-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathplatformio.ini
More file actions
79 lines (68 loc) · 1.86 KB
/
platformio.ini
File metadata and controls
79 lines (68 loc) · 1.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
; PlatformIO Project Configuration File
[platformio]
;default_envs = default
[env]
platform = espressif32
framework = arduino
monitor_speed = 115200
build_flags =
-I include
-I src/hoverboardAPI/src
-I src/hoverboardAPI/src/hbprotocol
lib_deps =
https://github.com/bewegungsappar-at/MPU6050.git
;board_build.partitions = min_spiffs.csv
;upload_port = 192.168.4.2
;upload_protocol = espota
upload_port = /dev/ttyUSB0
[env:default]
board = featheresp32
lib_deps =
WiFiClientSecure
leeseungcheol/ODROID-GO @ 1.0.0
${env.lib_deps}
[env:wrover_testrun]
board = esp-wrover-kit
debug_tool = ftdi
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=4 ; Use config set Type 'CFG_TESTRUN'
[env:odroidgo]
board = odroid_esp32
lib_deps =
WiFiClientSecure
leeseungcheol/ODROID-GO @ 1.0.0
${env.lib_deps}
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=0 ; Use config set Type 'CFG_ODROIDGO'
[env:TTGO_PADDELEC]
; TTGO I2C is Pin4 and Pin4
board = esp32dev
board_build.partitions = min_spiffs.csv
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=3 ; Use config set Type 'CFG_TTGO_PADDELEC'
[env:wireshark]
board = nodemcu-32s
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=7 ; Use config set Type 'CFG_WIRESHARK'
[env:paddelec]
board = nodemcu-32s
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=5 ; Use config set Type 'CFG_PADDELEC'
[env:paddle]
board = featheresp32
upload_port = 192.168.4.2
upload_protocol = espota
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=6 ; Use config set Type 'CFG_PADDLE'
[env:panzer]
; Pinout: https://learn.adafruit.com/adafruit-huzzah32-esp32-feather/pinouts
board = featheresp32
build_flags =
${env.build_flags}
-D CONFIGURATION_SET=10 ; Use config set Type 'CFG_PANZER'