-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplatformio.ini
60 lines (48 loc) · 1.48 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
; 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]
;--------------- select you board --------------;
; default_envs = LILYGO-EPD47-S
;--------------- select a example --------------;
src_dir = examples/display_demo
; src_dir = examples/drawImages
; src_dir = examples/lora_recv
; src_dir = examples/lora_send
; src_dir = examples/sd_card_test
; src_dir = examples/grayscale_test
; src_dir = examples/multidevice_spi
;----------------------------------------------;
boards_dir = boards
[env]
platform = [email protected]
board = T5-ePaper-S3
framework = arduino
upload_speed = 921600
monitor_speed = 115200
; monitor_port = COM136
monitor_filters = esp32_exception_decoder
; board_build.partition = default_16MB.csv
; extra_scripts = ./script/pos_extra_script.py
build_flags =
-DBOARD_HAS_PSRAM
; Enable -DARDUINO_USB_CDC_ON_BOOT will start printing and wait for terminal access during startup
-DARDUINO_USB_CDC_ON_BOOT=1
-DCORE_DEBUG_LEVEL=5
; -DLOG_PORT=Serial
-DDISABLE_ALL_LIBRARY_WARNINGS
-Wl,--gc-sections
[env:LILYGO-EPD47-S]
extends = env
board = T5-ePaper-S3
build_flags = ${env.build_flags}
-DLILYGO_EPD47_S
lib_deps =
Wire
SPI