-
Notifications
You must be signed in to change notification settings - Fork 23
/
.travis.platformio.ini
63 lines (52 loc) · 1.77 KB
/
.travis.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
; 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]
src_dir = RFLink
[env]
framework = arduino
monitor_speed = 921600
lib_ldf_mode = deep
[common]
ESPlibs =
PubSubClient
ArduinoJson
Wire
U8g2
https://github.com/me-no-dev/ESPAsyncWebServer.git#master
https://github.com/cpainchaud/rflink-webui.git#main
https://github.com/cpainchaud/RadioLib.git#master
https://github.com/boblemaire/asyncHTTPrequest.git#master
https://github.com/obones/rtl_433.git#RFLink32
ESP32_libs =
https://github.com/lorol/LITTLEFS.git#master
src_build_flags =
-D RFLINK_BUILDNAME='"'${sysenv.RFLINK_BUILDNAME}'"'
-IRFLink/rtl_433/include
[ESP32_base]
platform = [email protected]
;platform = espressif32 ; to try Latest espressif git
;platform_packages = ; to try Latest espressif git
; platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git ; to try Latest espressif git
board = esp32dev
lib_deps =
${common.ESPlibs}
${common.ESP32_libs}
src_build_flags =
${common.src_build_flags}
board_build.partitions = partitions/esp32_4MB_LittleFS-327k.csv
[env:ESP32_none_enabled]
extends = ESP32_base
src_build_flags =
${ESP32_base.src_build_flags}
[env:ESP32_sw]
extends = ESP32_base
src_build_flags =
${ESP32_base.src_build_flags}
-D RFLINK_WIFI_ENABLED