forked from google/science-journal-arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
50 lines (46 loc) · 1.1 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
49
50
; 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
[env:blend]
platform = atmelavr
framework = arduino
board = blend
src_filter = +<blend/>
lib_deps =
EEPROM
SPI
ble-sdk-arduino
; force goosci for now, fix the circular dependency between GoosciBleGatt and goosci
build_flags = -I$PROJECT_DIR/lib/goosci
lib_ldf_mode = 1
[env:101]
platform = [email protected]
framework = arduino
board = genuino101
src_filter = +<arduino101/>
lib_deps = [email protected]
lib_ignore = GoosciBleGatt, BLEPeripheral
[env:mega2560]
platform = atmelavr
framework = arduino
board = megaatmega2560
src_filter = +<arduino/>
lib_deps =
SPI
BLEPeripheral@^0.3.1
lib_ignore = GoosciBleGatt
[env:uno]
platform = atmelavr
framework = arduino
board = uno
src_filter = +<arduino/>
lib_deps =
SPI
BLEPeripheral@^0.3.1
lib_ignore = GoosciBleGatt