forked from jbrazio/ardufocus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
104 lines (93 loc) · 3.25 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
103
104
;
; Ardufocus - Moonlite compatible focuser
; Copyright (C) 2017-2019 João Brázio [[email protected]]
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.
;
[platformio]
env_default = uno, nano, nano328pb, debug
src_dir = ardufocus
[common]
lib_ignore =
src_build_flags = -Wall -Wextra -fmax-errors=2
lib_deps_external =
[env:uno]
platform = atmelavr
board = uno
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
[env:pro]
platform = atmelavr
board = pro16MHzatmega328
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
upload_protocol = usbasp
upload_flags = -Pusb
[env:nano]
platform = atmelavr
board = nanoatmega328
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
; Uncomment this line if you have upgraded the bootloader
; on your Arduino Nano
;upload_speed = 115200
[env:nano328pb]
platform = atmelavr
board = atmega328pb
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
; Uncomment this line if you have upgraded the bootloader
; on your Arduino Nano
;upload_speed = 115200
[env:nano168]
platform = atmelavr
board = nanoatmega168
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
; Uncomment this line if you have upgraded the bootloader
; on your Arduino Nano
;upload_speed = 115200
[env:nano168p]
platform = atmelavr
board = 168pa16m
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
; Uncomment this line if you have upgraded the bootloader
; on your Arduino Nano
;upload_speed = 115200
;
; The following environments are special builds that will allow
; you to see the ASM inline with the source code.
;
; # avr-objdump -Slz -Isrc .pioenvs/debug/firmware.elf >> .pioenvs/debug/firmware.S
[env:debug]
platform = atmelavr
board = nanoatmega328
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags} -fverbose-asm
lib_deps = ${common.lib_deps_external}
extra_scripts = buildroot/bin/add-linker-flags.py
[env:debug168]
platform = atmelavr
board = nanoatmega168
lib_ignore = ${common.lib_ignore}
src_build_flags = ${common.src_build_flags} -fverbose-asm
lib_deps = ${common.lib_deps_external}
extra_scripts = buildroot/bin/add-linker-flags.py