- gcc-avr
- avr-libc
- avrdude
- To compile
make compile ARG="hello"
or
make ARG="hello"
Note: In the above example if you provide the string as hello to
ARG
, you must havehello.c
in the same directory asMakefile
. - To flash/burn your program
make burn ARG="hello"
- To clean
make clean ARG="hello"
optionally you can also run
make clean