Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
2 |
nishi |
1 |
#!/bin/sh
|
|
|
2 |
make PLATFORM=arduino || exit 1
|
|
|
3 |
if [ "x$DEVICE" = "x" ]; then
|
|
|
4 |
echo -n "Device? "
|
|
|
5 |
read DEVICE
|
|
|
6 |
fi
|
|
|
7 |
avrdude -F -V -c arduino -p ATMEGA328P -P $DEVICE -b 115200 -U flash:w:BASIC/krakow.hex
|