avrman (avr manager) is a tool for managing nim projects targetting AVR microcontrollers.
It is tightly coupled with the avr_io library, which is not a dependency, but it is used as the base dependency for projects created with this tool.
This tools does not use any third party libraries. Note that projects created
with this tool depend on avr_io. If port discovery is used, avrdude
should be separately installed.
Requires nim >= 2.0.0.
- Currently tested with avr-gcc 15.2.0, binutils 2.45, avr-libc 2.2.1.
- N.B. Port discovery is only available on linux and macosx.
git clone https://github.com/Abathargh/avrman
cd avrman
git submodule update --init --recursive
nim c avrmanOr simply install using:
nimble install avrmanavr manager for nim and c projects.
avrman [options] command [command_options]
Options:
-h, --help shows this help message
-v, --version shows the current version
Commands:
init initializes an avr project
compile compiles an avr file with the default avrman options
device interacts with the avr devices connected to this machineYou can use the -h option with each subcommand to get a command-specific
help prompt.
For example, the following command will initialize a project for an ATMega644 running at 8KHz, using atmelice as its programmer:
avrman init -m:atmega644 -f:8000000 -p:"atmelice" test644Note that:
- The m/mcu option is required. A complete list of supported microcontrollers
can be obtained with the
-sflag. - The frequency defaults to 16MHz if not specified.
- If no prog string is provided, no
flash*nimble targets will be generated.
You can also specify devices, that avrman may know about. In that case it will take care of mostly everything by itself (and even of port discovery):
avrman init --device:uno test_arduinoYou can also use this tool to manage a C project for an avr chip, by using the
--cproject flag.
For example, you can use the following command to initialize a Makefile-based
C project for an arduino uno:
avrman init -m:atmega328p -f:16000000 -p:"arduino -b 115200 -P /dev/ttyACM0" \
--cproject test328pIf you wish to use CMake instead, you can use the --cmake flag:
avrman init -m:atmega328p -f:16000000 -p:"arduino -b 115200 -P /dev/ttyACM0" \
--cproject --cmake test328pDevice can also be used for c projects:
avrman init --device:uno --cproject test_arduinoBut port discovery is only supported for make ones.
The compile subcommand can be used for quick, one-off checks, when you do not want to generate a whole project and take care of everything.
Let's say you have a simple nim program save into example.nim. Then to
quickly compile it, you can use avrman compile example.nim.
This is useful if you want to quickly produce a hex/elf and check its content to compare code being generated.
To get information about connected devices (e.g. programmers, arduino boards), the following command can be used:
avrman device uno
avrman device --list # to show the full list of supported devicesThis application is licensed under the BSD 3-Clause "New" or "Revised" License.