-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
66 lines (62 loc) · 1.69 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
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html
[env]
platform = espressif32
framework = espidf, arduino
monitor_speed = 115200
upload_speed = 400000
extra_scripts = git_rev_macro.py
platform_packages =
; use a special branch
framework-arduinoespressif32@https://github.com/marcovannoord/arduino-esp32#idf-release/v4.0
[env:ttgo-t-watch]
board = ttgo-t-watch
monitor_filters = esp32_exception_decoder
board_build.partitions = default_16MB.csv
build_flags =
-D ARDUINO=165
-D ESP32=1
-D LV_USE_LOG=1
-D LILYGO_WATCH_2020_V1
-Wno-return-type
-Wno-unused-const-variable
-Wno-class-memaccess
lib_deps =
xinyuan-lilygo/TTGO TWatch [email protected]
ArduinoJson
[env:ttgo-t-watch-v2]
board = ttgo-t-watch
monitor_filters = esp32_exception_decoder
board_build.partitions = default_16MB.csv
build_flags =
-D ARDUINO=165
-D ESP32=1
-D LV_USE_LOG=1
-D LILYGO_WATCH_2020_V2
-Wno-return-type
-Wno-unused-const-variable
-Wno-class-memaccess
lib_deps =
xinyuan-lilygo/TTGO TWatch [email protected]
ArduinoJson
[env:ttgo-t-watch-v3]
board = ttgo-t-watch
monitor_filters = esp32_exception_decoder
board_build.partitions = default_16MB.csv
build_flags =
-D ARDUINO=165
-D ESP32=1
-D LV_USE_LOG=1
-D LILYGO_WATCH_2020_V3
-Wno-return-type
-Wno-unused-const-variable
-Wno-class-memaccess
lib_deps =
xinyuan-lilygo/TTGO TWatch [email protected]
ArduinoJson