mirror of
https://github.com/mcore1976/jammer.git
synced 2026-02-19 17:31:28 +01:00
9 lines
254 B
Plaintext
9 lines
254 B
Plaintext
rm *.elf
|
|
rm *.o
|
|
rm *.hex
|
|
avr-gcc -mmcu=attiny13 -std=gnu99 -Wall -Os -o main.elf main.c -w
|
|
avr-objcopy -j .text -j .data -O ihex main.elf main.hex
|
|
avr-size --mcu=attiny13 --format=avr main.elf
|
|
sudo avrdude -c usbasp -p attiny13 -U flash:w:"main.hex":a
|
|
|