-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
48 lines (39 loc) · 1.17 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
; 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
; http://docs.platformio.org/page/projectconf.html
; pio run
; pio run -t upload
; pio device monitor -b 115200
[platformio]
[common_env_data]
src_dir =
src
build_flags =
-Wall
lib_deps_builtin =
SPI
Wire
lib_deps_external =
https://github.com/joaquimBS/ArduinoLibs/raw/master/HTU21D.zip
https://github.com/rocketscream/Low-Power/archive/V1.6.zip
https://github.com/greiman/SSD1306Ascii/archive/master.zip
https://github.com/LowPowerLab/RFM69/archive/1.4.0.zip
https://github.com/LowPowerLab/SPIFlash/archive/101.1.2.zip
https://github.com/adafruit/RTClib/archive/1.2.0.zip
[env:uno]
framework = arduino
platform = atmelavr
board = uno
build_flags =
${common_env_data.build_flags}
-Wl,-Map,firmware.map
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
monitor_speed = 115200