6 lines
134 B
Bash
Executable File
6 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Build & Flash
|
|
avra main.asm && avrdude -p m328p -c arduino -b 115200 -P /dev/tty.usbserial-A50285BI -U flash:w:main.hex
|
|
|