-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
102 lines (88 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
; Project Configuration File
;
; A detailed documentation with the EXAMPLES is located here:
; http://docs.platformio.org/en/latest/projectconf.html
;
; A sign `;` at the beginning of the line indicates a comment
; Comment lines are ignored.
; Simple and base environment
; [env:mybaseenv]
; platform = %INSTALLED_PLATFORM_NAME_HERE%
; framework =
; board =
;
; Automatic targets - enable auto-uploading
; targets = upload
[env:due]
platform = atmelsam
framework = arduino
board = due
lib_deps = DueTimer
lib_ignore = TimerOne
[env:uno]
platform = atmelavr
framework = arduino
board = uno
lib_deps = TimerOne
lib_ignore = DueTimer
[env:leonardo]
platform = atmelavr
framework = arduino
board = leonardo
lib_deps = TimerOne
lib_ignore = DueTimer
[env:diecimilaatmega168]
platform = atmelavr
framework = arduino
board = diecimilaatmega168
lib_deps = TimerOne
lib_ignore = DueTimer
[env:megaatmega1280]
platform = atmelavr
framework = arduino
board = megaatmega1280
lib_deps = TimerOne
lib_ignore = DueTimer
[env:megaatmega2560]
platform = atmelavr
framework = arduino
board = megaatmega2560
lib_deps = TimerOne
lib_ignore = DueTimer
[env:teensy2]
platform = teensy
board = teensy2
framework = arduino
lib_deps = TimerOne
lib_ignore = DueTimer
[env:teensy2pp]
platform = teensy
board = teensy2pp
framework = arduino
lib_deps = TimerOne
lib_ignore = DueTimer
[env:teensy31]
platform = teensy
board = teensy31
framework = arduino
lib_deps = TimerOne
lib_ignore = DueTimer
;[env:teensy36]
;platform = teensy
;board = teensy36
;framework = arduino
;lib_deps = TimerOne
;lib_ignore = DueTimer
;build_flags = -D USB_SERIAL_HID
[env:uno_pic32]
platform = microchippic32
framework = arduino
board = uno_pic32
lib_deps = IQRF DPA
lib_ignore = TimerOne, DueTimer
[env:chipkit_uc32]
platform = microchippic32
framework = arduino
board = chipkit_uc32
lib_deps = IQRF DPA
lib_ignore = TimerOne, DueTimer