-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
44 lines (40 loc) · 1.2 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, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[common]
lib_deps_builtin = SPI
lib_deps_external =
https://github.com/frankleonrose/LoraStack
https://github.com/adafruit/Adafruit_Sensor
https://github.com/mcci-catena/Adafruit_BME280_Library
https://github.com/frankleonrose/Adafruit_FRAM_SPI#feat-shared-spi
https://github.com/JChristensen/Timer
[platformio]
src_dir = TemperatureThing
; src_filter = +<*>
; lib_dir=
; [env:teensy36]
; platform = teensy
; board = teensy36
; framework = arduino
; build_flags = -std=gnu99
; lib_deps = ${common.lib_deps_builtin}, ${common.lib_deps_external}
[env:adafruit_feather_m0]
platform = atmelsam
board = adafruit_feather_m0
framework = arduino
build_flags =
-DLOGGING_ARDUINO
-DLMIC_DEBUG_LEVEL=3
-DLMIC_DEBUG_PRINTF_FN=LmicDebug
-DSPI_FREQ=1000000
-DCFG_us915
-Os
; build_flags = -O3
; -std=gnu99
lib_deps = ${common.lib_deps_builtin}, ${common.lib_deps_external}