-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
executable file
·65 lines (55 loc) · 1.14 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
[env]
platform = atmelavr
board = ATmega328
framework = arduino
upload_flags =
-C
$PROJECT_PACKAGES_DIR/tool-avrdude/avrdude.conf
-p
m328
-b
115200
-c
usbtiny
upload_command = avrdude $UPLOAD_FLAGS -U flash:w:$SOURCE:i
test_ignore =
examples
test_desktop
; [env:native]
; platform = native
; test_ignore = examples ;enables test_desktop folder
[env:USBtiny ISP]
; build_flags=-std=c++11
; board = ATmega328
; framework = arduino
upload_protocol = usbtiny
; [env:AVRISP mkII]
; upload_protocol = stk500v2
; upload_flags =
; -Pusb
; [env:Arduino ISP]
; upload_protocol = arduinoisp
; [env:Arduino as ISP]
; upload_protocol = stk500v1
; upload_flags =
; -P$UPLOAD_PORT
; -b$UPLOAD_SPEED
; ; edit these lines
; upload_port = SERIAL_PORT_HERE
; upload_speed = 19200
; [env:USBasp]
; upload_protocol = usbasp
; upload_flags =
; -Pusb
; [env:Parallel Programmer]
; upload_protocol = dapa
; upload_flags =
; -F
; [env:BusPirate as ISP]
; upload_protocol = buspirate
; upload_flags =
; -P$UPLOAD_PORT
; -b$UPLOAD_SPEED
; ; edit these lines
; upload_port = SERIAL_PORT_HERE
; upload_speed = 115200