-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
89 lines (70 loc) · 1.77 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
; 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 = NowTalk
[env]
src_filter = -<*>
monitor_speed = 115200
monitor_flags =
--quiet
--echo
--eol
LF
--filter
colorize
[env:CommBadge]
platform = espressif32
board = esp32dev
framework = arduino
src_filter = +<commbadge>
extra_scripts =
pre:pre_script.py
pre:platformio_version_increment/version_increment_pre.py
post:platformio_version_increment/version_increment_post.py
post:post_script.py
custom_name= nowTalkBadge
custom_version=32.256.0
upload_protocol = custom
lib_deps =
lennarthennigs/Button2@^1.6.1
bblanchon/ArduinoTrace@^1.2.0
[env:Bridge]
board = wemos_d1_mini32
platform = espressif32
framework = arduino
src_filter = +<bridge>
lib_deps = bblanchon/ArduinoTrace@^1.2.0
custom_name= nowTalkBridge
custom_version=2.26.221
upload_protocol = custom
extra_scripts =
pre:pre_script.py
pre:platformio_version_increment/version_increment_pre.py
post:platformio_version_increment/version_increment_post.py
post:post_script.py
[env:dataChain]
platform = espressif32
board = esp32dev
framework = arduino
src_filter = -<*> +<dataChain>
lib_deps =
lennarthennigs/Button2@^1.6.1
bblanchon/ArduinoTrace@^1.2.0
[env:CommBadge Direct]
platform = espressif32
board = esp32dev
framework = arduino
src_filter = +<commbadge>
extra_scripts =
custom_name= nowTalkBadge
custom_version=32.256.0
lib_deps =
lennarthennigs/Button2@^1.6.1
bblanchon/ArduinoTrace@^1.2.0