4 lines
96 B
Bash
4 lines
96 B
Bash
#!/bin/sh
|
|
[ -z "$1" ] && exit 1
|
|
avrdude -p atmega32u4 -P /dev/ttyACM0 -c avr109 -U flash:w:"$1"
|