-
Notifications
You must be signed in to change notification settings - Fork 6
/
platformio.ini
63 lines (55 loc) · 1.3 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
; 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]
src_dir = bgeigiezen_firmware
default_envs = m5stack
[env]
platform = espressif32
framework = arduino
monitor_speed = 115200
lib_compat_mode = off
build_flags =
-D MAJOR_VERSION=3
-D MINOR_VERSION=2
-D PATCH_VERSION=5
-D DEBUG=1
lib_deps =
claypuppet/[email protected]
beakes/TeenyUbloxConnect@^1.0.28
alextaujenis/RBD_Timer@^1.3.2
monitor_filters = esp32_exception_decoder
[env:m5stack-core2]
board = m5stack-core2
lib_deps =
${env.lib_deps}
m5stack/M5Core2@^0.1.9
tanakamasayuki/I2C BM8563 RTC@^1.0.4
build_flags =
${env.build_flags}
-D M5_CORE2
[env:m5stack]
board = m5stack-core-esp32
board_build.partitions = huge_app.csv
lib_deps =
${env.lib_deps}
m5stack/M5Stack@^0.4.6
build_flags =
${env.build_flags}
-D M5_BASIC
[env:m5stack-grey]
board = m5stack-core-esp32
board_build.partitions = huge_app.csv
lib_deps =
${env.lib_deps}
m5stack/M5Stack@^0.4.6
build_flags =
${env.build_flags}
-D M5_BASIC
-D M5_GREY