10 lines
189 B
Makefile
10 lines
189 B
Makefile
all:
|
|
make build
|
|
make program
|
|
|
|
build:
|
|
avr-gcc ATtiny84_LED_PC.c i2c_master.c -o controller -DF_CPU=16000000 -mmcu=attiny84
|
|
|
|
program:
|
|
avrdude -p attiny84 -c usbtiny -U flash:w:controller
|