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