diff options
author | rodri <rgl@antares-labs.eu> | 2021-06-05 11:10:23 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2021-06-05 11:10:23 +0000 |
commit | edf5f145013aa28ffbc7f19f874cd489a92f8449 (patch) | |
tree | 05a7dfdae1b63a79bdfbb1fab84af35a51b5b99c /asm/blink/makefile | |
download | avrtoys-master.tar.gz avrtoys-master.tar.bz2 avrtoys-master.zip |
Diffstat (limited to 'asm/blink/makefile')
-rw-r--r-- | asm/blink/makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/asm/blink/makefile b/asm/blink/makefile new file mode 100644 index 0000000..4790211 --- /dev/null +++ b/asm/blink/makefile @@ -0,0 +1,17 @@ +CC=avr-gcc +AS=avr-as + +PORT=/dev/ttyACM0 +TARG=blink + +all: build + +build: + $(AS) -mmcu=atmega328p -o $(TARG).elf $(TARG).s + avr-objcopy -j .text -j .data -O ihex $(TARG).elf $(TARG).hex + +burn: + avrdude -v -p atmega328p -c arduino -P $(PORT) -b 115200 -D -U flash:w:$(TARG).hex + +clean: + rm -f $(TARG).elf $(TARG).hex |