-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_avr_prj.sh
292 lines (232 loc) · 8.85 KB
/
create_avr_prj.sh
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#!/bin/bash
# Put together by William E. R., Makefile template from https://github.com/codergirljp/ATMega32-AVR-Programming/blob/9d808e5b9df42cf5a10dc6f9a763f30126550cee/Makefile
# usage: create_avr_prj -d <board-name> -f <frequency in Hz> -b <baud-rate> -n <project-name>
# make (pun intended) sure that the board name is one recognized by avrdude and avr-gcc.
confirm() {
# call with a prompt string or use a default
read -r -p "${1:-Are you sure? [y/N]} " response
case "$response" in
[yY][eE][sS]|[yY])
true
;;
*)
false
;;
esac
}
board="atmega32"
freq="8000000"
baud="9600"
while getopts d:f:b:n: flag
do
case "${flag}" in
d) board=${OPTARG}
;;
f) freq=${OPTARG}
;;
b) baud=${OPTARG}
;;
n) name=${OPTARG}
;;
*) echo "Invalid option: -$flag" ;;
esac
done
if [[ -z "$name" ]]; then
echo "Please specify project name."
exit 2
fi
if [[ -d "$name" ]]; then
echo "Folder with same name in this directory already exists. Do you want to overwrite?"
flag="N"
if confirm;
then
rm -r $name
else
echo "Exiting."
exit 1
fi
fi
mkdir ./$name;
cd $name;
touch "${name}.c"
touch "Makefile"
cat <<EOF > ${name}.c
// ${name} on ${board}
#ifndef F_CPU
#define F_CPU ${freq}UL // 8 MHz
#endif
#include<avr/io.h>
#include<util/delay.h>
int main(void){
// Setup code
while(1){
// Superloop code
}
}
EOF
cat <<EOF > Makefile
## From https://github.com/codergirljp/ATMega32-AVR-Programming/blob/9d808e5b9df42cf5a10dc6f9a763f30126550cee/Makefile
## Modified slightly by William E. R. to accomodate assembly snippets
##########------------------------------------------------------##########
########## Project-specific Details ##########
########## Check these every time you start a new project ##########
##########------------------------------------------------------##########
## Target AVR settings
MCU = ${board}
F_CPU = ${freq}
BAUD = ${baud}
## The code file containing the main() function.
MAIN = ${name}.c
## If you've split your program into multiple .c / .h files,
## include the additional source (in same directory) here
LOCAL_SOURCE =
## Here you can link to one more directory (and multiple .c files)
#EXTRA_SOURCE_DIR = ../../lib/
EXTRA_SOURCE_DIR =
EXTRA_SOURCE_FILES =
## Assembler files if you need 'em
ASRC =
##########------------------------------------------------------##########
########## Programmer Defaults ##########
########## Set up once, then forget about it ##########
########## (Can override. See bottom of file.) ##########
##########------------------------------------------------------##########
# avrisp to use the arduino as an ISP
PROGRAMMER_TYPE = avrisp
# extra arguments to avrdude: baud rate, chip type, -F flag, etc.
# NOTE: baud rate -b must match the baud rate in the ArduinoISP sketch = 19200
# If the baud rate is different you will get an avrdude error:
# avrdude error - stk500_getsync(): not in sync: resp=0xff
PROGRAMMER_ARGS = -v -v -cstk500v1 -P\\\.\COM4 -b19200
##########------------------------------------------------------##########
########## Makefile Magic! ##########
########## Summary: ##########
########## We want a .hex file ##########
########## Compile source files into .elf ##########
########## Convert .elf file into .hex ##########
########## You shouldn't need to edit below. ##########
##########------------------------------------------------------##########
## Defined programs / locations
CC = avr-gcc
OBJCOPY = avr-objcopy
OBJDUMP = avr-objdump
AVRSIZE = avr-size
AVRDUDE = avrdude
## Compilation options, type man avr-gcc if you're curious.
CFLAGS = -mmcu=\$(MCU) -DF_CPU=\$(F_CPU)UL -DBAUD=\$(BAUD) -Os -I. -I\$(EXTRA_SOURCE_DIR)
CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
CFLAGS += -Wall -Wstrict-prototypes
CFLAGS += -g -ggdb
CFLAGS += -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--relax
CFLAGS += -std=gnu99
## CFLAGS += -Wl,-u,vfprintf -lprintf_flt -lm ## for floating-point printf
## CFLAGS += -Wl,-u,vfprintf -lprintf_min ## for smaller printf
ASFLAGS = -g -Wall -Os -DF_CPU=\$(F_CPU)UL -mmcu=\$(MCU)
## Lump target and extra source files together
TARGET = \$(strip \$(basename \$(MAIN)))
SRC = \$(TARGET).c
EXTRA_SOURCE = \$(addprefix \$(EXTRA_SOURCE_DIR), \$(EXTRA_SOURCE_FILES))
SRC += \$(EXTRA_SOURCE)
SRC += \$(LOCAL_SOURCE)
SRC += \$(ASRC)
## List of all header files
HEADERS = \$(SRC:.c=.h)
## For every .c file, compile an .o object file
OBJ = \$(SRC:.c=.o) \$(ASRC:.S=.o)
## Generic Makefile targets. (Only .hex file is necessary)
all: \$(TARGET).hex
%.o : %.S
\$(CC) -c \$(ASFLAGS) $< -o \$@
%.hex: %.elf
\$(OBJCOPY) -R .eeprom -O ihex $< \$@
%.elf: \$(SRC)
\$(CC) \$(CFLAGS) \$(SRC) --output \$@
%.eeprom: %.elf
\$(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O ihex $< \$@
debug:
@echo
@echo "Source files:" \$(SRC)
@echo "MCU, F_CPU, BAUD:" \$(MCU), \$(F_CPU), \$(BAUD)
@echo
# Optionally create listing file from .elf
# This creates approximate assembly-language equivalent of your code.
# Useful for debugging time-sensitive bits,
# or making sure the compiler does what you want.
disassemble: \$(TARGET).lst
disasm: disassemble
eeprom: \$(TARGET).eeprom
%.lst: %.elf
\$(OBJDUMP) -S $< > \$@
# Optionally show how big the resulting program is
size: \$(TARGET).elf
\$(AVRSIZE) -C --mcu=\$(MCU) \$(TARGET).elf
clean:
rm -f \$(TARGET).elf \$(TARGET).hex \$(TARGET).obj \\
\$(TARGET).o \$(TARGET).d \$(TARGET).eep \$(TARGET).lst \\
\$(TARGET).lss \$(TARGET).sym \$(TARGET).map \$(TARGET)~ \\
\$(TARGET).eeprom
squeaky_clean:
rm -f *.elf *.hex *.obj *.o *.d *.eep *.lst *.lss *.sym *.map *~
##########------------------------------------------------------##########
########## Programmer-specific details ##########
########## Flashing code to AVR using avrdude ##########
##########------------------------------------------------------##########
flash: \$(TARGET).hex
\$(AVRDUDE) -c \$(PROGRAMMER_TYPE) -p \$(MCU) \$(PROGRAMMER_ARGS) -U flash:w:$<
## An alias
program: flash
flash_eeprom: \$(TARGET).eeprom
\$(AVRDUDE) -c \$(PROGRAMMER_TYPE) -p \$(MCU) \$(PROGRAMMER_ARGS) -U eeprom:w:$<
avrdude_terminal:
\$(AVRDUDE) -c \$(PROGRAMMER_TYPE) -p \$(MCU) \$(PROGRAMMER_ARGS) -nt
## If you've got multiple programmers that you use,
## you can define them here so that it's easy to switch.
## To invoke, use something like \`make flash_arduinoISP\`
flash_usbtiny: PROGRAMMER_TYPE = usbtiny
flash_usbtiny: PROGRAMMER_ARGS = # USBTiny works with no further arguments
flash_usbtiny: flash
flash_usbasp: PROGRAMMER_TYPE = usbasp
flash_usbasp: PROGRAMMER_ARGS = # USBasp works with no further arguments
flash_usbasp: flash
flash_arduinoISP: PROGRAMMER_TYPE = avrisp
flash_arduinoISP: PROGRAMMER_ARGS = -v -v -cstk500v1 -P\\\.\COM4 -b19200
flash_arduinoISP: flash
flash_109: PROGRAMMER_TYPE = avr109
flash_109: PROGRAMMER_ARGS = -b 9600 -P /dev/ttyUSB0
flash_109: flash
##########------------------------------------------------------##########
########## Fuse settings and suitable defaults ##########
##########------------------------------------------------------##########
## Mega 48, 88, 168, 328 default values
LFUSE = 0x62
HFUSE = 0xdf
EFUSE = 0x00
## Generic
FUSE_STRING = -U lfuse:w:\$(LFUSE):m -U hfuse:w:\$(HFUSE):m -U efuse:w:\$(EFUSE):m
fuses:
\$(AVRDUDE) -c \$(PROGRAMMER_TYPE) -p \$(MCU) \\
\$(PROGRAMMER_ARGS) \$(FUSE_STRING)
show_fuses:
\$(AVRDUDE) -c \$(PROGRAMMER_TYPE) -p \$(MCU) \$(PROGRAMMER_ARGS) -nv
## Called with no extra definitions, sets to defaults
set_default_fuses: FUSE_STRING = -U lfuse:w:\$(LFUSE):m -U hfuse:w:\$(HFUSE):m -U efuse:w:\$(EFUSE):m
set_default_fuses: fuses
## Set the fuse byte for full-speed mode
## Note: can also be set in firmware for modern chips
set_fast_fuse: LFUSE = 0xE2
set_fast_fuse: FUSE_STRING = -U lfuse:w:\$(LFUSE):m
set_fast_fuse: fuses
## Set the EESAVE fuse byte to preserve EEPROM across flashes
set_eeprom_save_fuse: HFUSE = 0xD7
set_eeprom_save_fuse: FUSE_STRING = -U hfuse:w:\$(HFUSE):m
set_eeprom_save_fuse: fuses
## Clear the EESAVE fuse byte
clear_eeprom_save_fuse: FUSE_STRING = -U hfuse:w:\$(HFUSE):m
clear_eeprom_save_fuse: fuses
EOF
echo "Created AVR project successfully."
echo "Options used for this project (can be changed in ./${name}/Makefile): "
echo "Project Name: ${name}"
echo "Board Selected: ${board}"
echo "Clock Freq: ${freq}"
echo "Baud Rate: ${baud}"