Installation
Dependencies
The only required external dependency is the avr-gcc cross compiler, available on most platforms. You also need the tiny avr-libc C library. Check your system documentation for getting these software.
Compiling
The package uses the autoconf framework to build and install itself. Simply run the bundled configure script to compile and install the software. For instance:
% ./configure --prefix=$HOME/devel % make install
You can check the autoconf online documentation for more help.
|
To generate the configure script, you have to run autoreconf in the source tree if you got the sources from the git repository instead of a tarball. |
Files
The package installs mainly one file in your installation prefix:
-
<prefix>/lib/arduio-firmware/uno, for the Arduino Uno board.
Flashing
In order to program the board, you have to upload the programs in the microcontroller flash memory. This can be done with the avrdude program as for any arduino software. For instance, use a command line similar to:
% avrdude -c arduino -p m328p -P /dev/ttyACM0 -U flash:w:uno