-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
64 lines (60 loc) · 1.9 KB
/
platformio.ini
File metadata and controls
64 lines (60 loc) · 1.9 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
; 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]
default_envs = gcd
[env:gcd]
platform = espressif32
board = esp32-2432S028Rv2
board_build.partitions = huge_app.csv
framework = arduino
build_flags = -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -DCORE_DEBUG_LEVEL=0 -DARDUINO_LOOP_STACK_SIZE=4096
build_src_filter = +<*> -<calibration_main.cpp> -<tone_tester.cpp>
extra_scripts =
pre:scripts/copy_cyd_configs.py
pre:scripts/fix_lv_dropdown_set_selected.py
pre:scripts/fix_lv_draw_label_oom.py
post:scripts/autoincrement.py
post:scripts/combine_bins.py
lib_deps =
https://github.com/PaulStoffregen/XPT2046_Touchscreen.git
bodmer/TFT_eSPI@^2.5.43
lvgl/lvgl@9.3.0
jchristensen/JC_Sunrise@^1.0.3
slashdevin/NeoGPS@4.2.9
jchristensen/Timezone@^1.2.5
monitor_speed = 9600
monitor_port = COM5
upload_port = COM5
[env:calibration]
platform = espressif32
board = esp32-2432S028Rv2
framework = arduino
build_flags = -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -DCORE_DEBUG_LEVEL=0
build_src_filter = +<calibration_main.cpp>
extra_scripts =
pre:scripts/copy_cyd_configs.py
post:scripts/combine_bins.py
lib_deps =
https://github.com/PaulStoffregen/XPT2046_Touchscreen.git
bodmer/TFT_eSPI@^2.5.43
lvgl/lvgl@9.3.0
tomstewart89/BasicLinearAlgebra@^3.6
monitor_speed = 9600
monitor_port = COM5
upload_port = COM5
[env:tone_test]
platform = espressif32
board = esp32-2432S028Rv2
framework = arduino
build_flags = -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -DCORE_DEBUG_LEVEL=0
build_src_filter = +<tone_tester.cpp>
monitor_speed = 9600
monitor_port = COM5
upload_port = COM5