forked from scott2b/EmbeddedProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
executable file
·38 lines (34 loc) · 984 Bytes
/
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
; 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/page/projectconf.html
; You may wish to push the code into a subdirectory of your project repository,
; in which case everything except this platformio.ini would go into the
; referenced src_dir.
;[platformio]
;src_dir = MyEmbeddedProject
[env:uno]
platform = atmelavr
framework = arduino
board = uno
test_ignore = test_desktop
monitor_speed = 115200
lib_extra_dirs =
lib
[env:adafruit_feather_m0]
platform = atmelsam
framework = arduino
board = adafruit_feather_m0
test_ignore = test_desktop
monitor_speed = 115200
lib_extra_dirs =
lib
[env:native]
platform = native
test_ignore = test_embedded
lib_extra_dirs =
lib