Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/004-flashing-a-crate-to-chip.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Flashing a Rust ELF file is no different to flashing a regular AVR-GCC C/C++ gen

## Arduino Uno

Connect your Arduino Uno to your computer, and use `avrdude` to flash your crate. The example below uses the output from [the `blink` example](./003.2-example-building-blink.md).
Connect your Arduino Uno to your computer, and use `avrdude` to flash your crate. The example below uses the output from [the `blink` example](./003.3-example-building-blink.md).

```bash
avrdude -patmega328p -carduino -P[PORT] -b115200 -D -Uflash:w:target/avr-atmega328p/release/blink.elf:e
Expand Down