diff options
author | Max Christian Pohle | 2017-05-20 19:08:44 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-05-20 19:08:44 +0200 |
commit | e22453c44e0b88f47cd16f6dd1a769bd4ff90203 (patch) | |
tree | bdbb67cfe1d607ac0ff3d7e42a5879bf3bfec3fd /Makefile | |
download | binwatch-mini-e22453c44e0b88f47cd16f6dd1a769bd4ff90203.tar.bz2 binwatch-mini-e22453c44e0b88f47cd16f6dd1a769bd4ff90203.zip |
First prototype version: Just shift register usage.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8d2720 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,6 @@ | |||
1 | all: | ||
2 | avr-gcc -Wall -mmcu=attiny85 -O3 -o main.elf main.c | ||
3 | avr-objcopy -j .text -j .data -O ihex main.elf main.hex | ||
4 | |||
5 | program: all | ||
6 | avrdude -B100 -p t85 -c avrisp2 -P usb -U flash:w:main.hex | ||