From 7ebd56579f5e90861c39fdf46fa7d53446cfeccf Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Wed, 18 May 2016 12:07:50 +0200 Subject: Read from and write to MKM when panic button is pressed. --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8ac277b --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CC = avr-gcc +CFLAGS = -Wall -Werror -mmcu=avr25 -D__AVR_ATtiny828__ +OBJCOPY = avr-objcopy + +all: tamper.hex + +%.elf: %.c + $(CC) $(CFLAGS) -o $@ $^ + +%.hex: %.elf + $(OBJCOPY) -O ihex $< $@ + +clean: + -rm *.o *.elf *.hex -- cgit v1.2.3