-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathplatformio.ini
129 lines (112 loc) · 4.08 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
;
; Ardufocus - Moonlite compatible focuser
; Copyright (C) 2017-2019 João Brázio [joao@brazio.org]
;
; 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]
default_envs = uno, nano328p, nano328pb, debug
src_dir = ardufocus
[common]
lib_ignore =
build_flags = -Wall -Wextra -fno-exceptions -fmax-errors=1
; minimal vfprintf()
;-Wl,-u,vfprintf -lprintf_min
; floating point vfprintf()
;-Wl,-u,vfprintf -lprintf_flt -lm
; minimal vfscanf()
;-Wl,-u,vfscanf -lscanf_min -lm
; floating point vfscanf()
;-Wl,-u,vfscanf -lscanf_flt -lm
; Enable DEBUG ISR scope triggers
;-D DEBUG_ISR
src_build_flags =
lib_deps_external =
[env:uno]
platform = atmelavr
board = uno
lib_ignore = ${common.lib_ignore}
build_flags = ${common.build_flags}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
[env:pro]
platform = atmelavr
board = pro16MHzatmega328
lib_ignore = ${common.lib_ignore}
build_flags = ${common.build_flags}
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
upload_protocol = usbasp
upload_flags = -Pusb
[env:nano328p]
platform = atmelavr
board = nanoatmega328
lib_ignore = ${common.lib_ignore}
build_flags = ${common.build_flags}
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}
build_flags = ${common.build_flags}
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}
build_flags = ${common.build_flags}
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}
build_flags = ${common.build_flags}
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}
build_flags = ${common.build_flags} -fverbose-asm
src_build_flags = ${common.src_build_flags}
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}
build_flags = ${common.build_flags} -fverbose-asm
src_build_flags = ${common.src_build_flags}
lib_deps = ${common.lib_deps_external}
extra_scripts = buildroot/bin/add-linker-flags.py