-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
57 lines (53 loc) · 1.43 KB
/
platformio.ini
File metadata and controls
57 lines (53 loc) · 1.43 KB
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
; 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
[env]
src_filter = -<diagrams/> -<.git/> -<.svn/> -<example/> -<examples/> -<test/> -<tests/> -<csvParser/>
;[env:nano]
;platform = atmelavr
;board = nanoatmega328new
;framework = arduino
;upload_port = /dev/ttyS0
;monitor_port = ${env:nano.upload_port}
;monitor_speed = 115200
;src_filter = ${env.src_filter} +<mainNano.cpp>
;lib_ignore = openCanSat-library
;lib_deps =
;SPI
;SerialTransfer
;I2Cdevlib-MPU6050
;DHT sensor library
;Adafruit Unified Sensor
;Adafruit BME280 Library
;[env:cansat]
;platform = atmelsam
;board = mzeroproUSB
;framework = arduino
;upload_port = /dev/ttyACM0
;monitor_port = ${env:cansat.upload_port}
;monitor_speed = 115200
;src_filter = ${env.src_filter} +<mainCanSat.cpp>
;lib_deps =
;SerialTransfer
;RFM69
;Adafruit Unified Sensor
;Adafruit BME280 Library
[env:basestation]
platform = atmelsam
board = mzeroproUSB
framework = arduino
upload_port = /dev/ttyACM0
monitor_port = ${env:basestation.upload_port}
monitor_speed = 115200
monitor_filters = log2file, time
src_filter = ${env.src_filter} +<mainBaseStation.cpp>
lib_deps =
openCanSat
RFM69
Ucglib