-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplatformio.ini
44 lines (38 loc) · 1.18 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
[platformio]
default_envs = heltec_wifi_lora_32-release, esp32-poe-lora-release
[env]
platform = [email protected]
framework = arduino
monitor_speed = 115200
board_build.embed_txtfiles =
data/index.html
data/script.js
lib_deps = jgromes/RadioLib@^6.2.0
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
bblanchon/ArduinoJson@^6.19.4
ottowinter/ESPAsyncWebServer-esphome@^3.0.0
[env:heltec_wifi_lora_32-release]
build_type = release
board = heltec_wifi_lora_32
build_flags = -DHELTEC -DHAS_DISPLAY
[env:heltec_wifi_lora_32-debug]
build_type = debug
board = heltec_wifi_lora_32
build_flags = -DHELTEC -DHAS_DISPLAY -DDEBUG
[env:esp32-poe-lora-release]
build_type = release
board = esp32-poe
build_flags = -DOLIMEX_POE
[env:esp32-poe-lora-debug]
build_type = debug
board = esp32-poe
build_flags = -DOLIMEX_POE -DDEBUG