-
Notifications
You must be signed in to change notification settings - Fork 12
/
platformio.ini
109 lines (73 loc) · 2.09 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
; 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]
;-------------- examples ----------------;
; Only one of the following example can be selected
;----------------------------------------;
; default_envs = cc1101_recv
; default_envs = cc1101_send
; default_envs = cc1101_recv_irq
; default_envs = cc1101_send_irq
; default_envs = infrared_recv_test
; default_envs = infrared_send_test
# default_envs = display_test
; default_envs = lvgl_test
; default_envs = encode_test
; default_envs = ws2812_test
; default_envs = pn532_test
; default_envs = bq25896_test
; default_envs = record_test
; default_envs = voice_test
; default_envs = tf_card_test
; default_envs = bq27xxx_test
default_envs = factory_test
;----------------------------------------;
boards_dir = boards
src_dir = examples/${platformio.default_envs}
[env]
platform = [email protected]
board = T_Embed_PN532
framework = arduino
upload_speed = 115200
monitor_filters = esp32_exception_decoder
; board_build.partitions = default_16MB.csv
; extra_scripts = ./script/pos_extra_script.py
build_flags =
-DARDUINO_USB_CDC_ON_BOOT=1
; -UARDUINO_USB_CDC_ON_BOOT
-DCORE_DEBUG_LEVEL=3
-DRADIOLIB_LOW_LEVEL=1
; -DBOARD_HAS_PSRAM=1
; -mfix-esp32-psram-cache-issue
-DDISABLE_ALL_LIBRARY_WARNINGS
-include lib/lv_conf.h
; lib_deps =
; lewisxhe/XPowersLib@^0.2.3
; esphome/[email protected]
[env:display_test]
[env:encode_test]
[env:lvgl_test]
[env:ws2812_test]
[env:cc1101_recv]
[env:cc1101_send]
[env:cc1101_recv_irq]
[env:cc1101_send_irq]
[env:pn532_test]
[env:bq25896_test]
[env:bq27220_test]
[env:record_test]
[env:voice_test]
[env:infrared_test]
[env:tf_card_test]
[env:usb_msc_flash]
[env:bq27xxx_test]
[env:infrared_recv_test]
[env:infrared_send_test]
[env:factory_test]