|
| 1 | +# `avr-unknown-unknown` |
| 2 | + |
| 3 | +Series of microcontrollers from Atmel: ATmega8, ATmega328p etc. |
| 4 | + |
| 5 | +**Tier: 3** |
| 6 | + |
| 7 | +## Target maintainers |
| 8 | + |
| 9 | +-[Patryk Wychowaniec](https://github.com/Patryk27) <pwychowaniec@pm.me> |
| 10 | + |
| 11 | +## Requirements |
| 12 | + |
| 13 | +This target is only cross-compiled - x86_64 / aarch64 x Lixux / MacOS hosts are |
| 14 | +confirmed to work, but in principle any machine able to run rustc and avr-gcc |
| 15 | +should be good. |
| 16 | + |
| 17 | +Compiling for this target requires `avr-gcc`, because a couple of intrinsics |
| 18 | +(like 32-bit multiplication) rely on [`libgcc`](https://github.com/gcc-mirror/gcc/blob/3269a722b7a03613e9c4e2862bc5088c4a17cc11/libgcc/config/avr/lib1funcs.S) |
| 19 | +and can't be provided through `compiler-builtins` yet; this is a limitation that |
| 20 | +we hope to lift in the future. |
| 21 | + |
| 22 | +## Building the target |
| 23 | + |
| 24 | +Rust comes with AVR support enabled, you don't have to rebuild the compiler |
| 25 | +itself. |
| 26 | + |
| 27 | +## Building Rust programs |
| 28 | + |
| 29 | +Install `avr-gcc`: |
| 30 | + |
| 31 | +```console |
| 32 | +# Ubuntu: |
| 33 | +$ sudo apt-get install gcc-avr |
| 34 | + |
| 35 | +# Mac: |
| 36 | +$ brew tap osx-cross/avr && brew install avr-gcc |
| 37 | + |
| 38 | +# NixOS (takes a couple of minutes, since Hydra doesn't build it): |
| 39 | +$ nix shell nixpkgs#pkgsCross.avr.buildPackages.gcc11 |
| 40 | +``` |
| 41 | + |
| 42 | +... setup `.cargo/config` for your project: |
| 43 | + |
| 44 | +```toml |
| 45 | +[build] |
| 46 | +target = "avr-unknown-unknown" |
| 47 | +rustflags = ["-C", "target-cpu=atmega328p"] |
| 48 | + |
| 49 | +[unstable] |
| 50 | +build-std = ["core"] |
| 51 | +``` |
| 52 | + |
| 53 | +... and then simply run: |
| 54 | + |
| 55 | +```console |
| 56 | +$ cargo build --release |
| 57 | +``` |
| 58 | + |
| 59 | +The final binary will be placed into |
| 60 | +`./target/avr-unknown-unknown/release/your-project.elf`. |
| 61 | + |
| 62 | +Note that since AVRs have rather small amounts of registers, ROM and RAM, it's |
| 63 | +recommended to always use `--release` to avoid running out of space. |
| 64 | + |
| 65 | +## Testing |
| 66 | + |
| 67 | +You can use [`simavr`](https://github.com/buserror/simavr) to emulate the |
| 68 | +resulting firmware on your machine: |
| 69 | + |
| 70 | +``` |
| 71 | +simavr -m atmega328p ./target/avr-unknown-unknown/release/your-project.elf |
| 72 | +``` |
| 73 | + |
| 74 | +Alternatively, if you want to write a couple of actual `#[test]`s, you can use |
| 75 | +[`avr-tester`](https://github.com/Patryk27/avr-tester). |
0 commit comments