Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Exemplo de Shell script para automatização da compilação e upload de programas para avr
- #Por: Filipe Coelho
- avr-gcc -Os -mmcu=atmega328p blink.c -o blink.out
- avr-objcopy -j .text -j .data -O ihex blink.out blink.hex
- avrdude -p m328p -c arduino -P /dev/ttyACM0 -b 115200 -U flash:w:blink.hex
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement