I would like to write a simple program and compile it for atmega16. How do I add atmega16 as a compilation target? There are little to no docs about this...
Thanks
I would like to write a simple program and compile it for atmega16. How do I add atmega16 as a compilation target? There are little to no docs about this...
Thanks
Copyright © 2021 Jogjafile Inc.
The only built-in AVR target is avr-unknown-gnu-atmega328. If you are using a different AVR microcontroller, you need a custom target.
The AVR-Rust Guidebook describes how to add custom targets for different AVR microcontrollers. The process boils down to:
Export the JSON specification for the built-in atmega328 target, to use as a template
Edit this JSON file. I found that to get it to compile for atmega16, I had to change the following:
Note:
avr-gcc
, as Rust uses it to link the resulting binary. You can get that here.You should then be able to build your project like this:
Note that
--target
is specified as the path to the JSON file. If in the same directory, prefix with./
.