-
Notifications
You must be signed in to change notification settings - Fork 26
/
platformio.ini
50 lines (39 loc) · 1.08 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
; 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 example
; https://docs.platformio.org/page/projectconf.html
[platformio]
; default_envs = led
default_envs = factory
; default_envs = mic
; default_envs = sound
; default_envs = tft
; default_envs = TFT_Rainbow
; The sketch only works with CC1101 + NFC Shield
; default_envs = CC1101_Transmit
; default_envs = CC1101_Receive
src_dir = examples/${platformio.default_envs}
data_dir = examples/${platformio.default_envs}/data
[env]
platform = espressif32@6.3.0
board = lilygo-t-display-s3
framework = arduino
build_flags =
-DARDUINO_USB_CDC_ON_BOOT=1
; -UARDUINO_USB_CDC_ON_BOOT
-DDISABLE_ALL_LIBRARY_WARNINGS
-DBOARD_HAS_PSRAM
board_build.partitions=huge_app.csv
[env:factory]
[env:led]
[env:mic]
[env:tft]
[env:sound]
[env:TFT_Rainbow]
[env:CC1101_Transmit]
[env:CC1101_Receive]