forked from Edzelf/ESP32Radio-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
44 lines (43 loc) · 1.42 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
; 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
[env:esp32]
platform = espressif32
;platform = [email protected]
;board = esp-wrover-kit
;board = esp32doit-devkit-v1
board = az-delivery-devkit-v4
framework = arduino
board_build.partitions = radiopart.csv
upload_port = COM5
;upload_protocol = espota ; OTA must be enabled in the running version, see config.h
;upload_port = 192.168.2.18 ; Adjust to the IP of the radio
monitor_port = COM5
monitor_speed = 115200
monitor_dtr = 0
monitor_rts = 0
monitor_filters = esp32_exception_decoder
monitor_echo = yes
build_flags =
-DCORE_DEBUG_LEVEL=5 ; Set to 0 for no debug; saves memory
; Set to 5 for full debug
-Os
; -Wl,-Map,ESP32-Radio.map
lib_ldf_mode = chain+ ; Obey #include lines
lib_deps =
Wire
knolleary/PubSubClient@^2.8
adafruit/Adafruit BusIO@^1.9.3
adafruit/Adafruit GFX Library@^1.10.4
adafruit/Adafruit ILI9341@^1.5.9
adafruit/Adafruit ST7735 and ST7789 Library@^1.7.5
me-no-dev/[email protected]
me-no-dev/ESP Async WebServer@^1.2.3
yveaux/AC101@^0.0.1
chris--a/Keypad@^3.1.1