https://github.com/ssnover/avr-programming-rs
Example AVR project implementations in Rust based on projects in Make: AVR Programming
https://github.com/ssnover/avr-programming-rs
arduino avr example rust
Last synced: about 1 year ago
JSON representation
Example AVR project implementations in Rust based on projects in Make: AVR Programming
- Host: GitHub
- URL: https://github.com/ssnover/avr-programming-rs
- Owner: ssnover
- License: mit
- Created: 2020-08-22T16:25:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-22T18:28:42.000Z (over 5 years ago)
- Last Synced: 2025-03-05T23:34:07.601Z (about 1 year ago)
- Topics: arduino, avr, example, rust
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# avr-programming-rs
This is a small project to replicate the code projects in Make: AVR Programming by Elliot Williams in Rust now that avr-rust is on the nightly toolchain! I have Arduino UNO's handy so this repo assumes you're using that.
In order to build the code, you'll need the dependencies as mentioned in https://github.com/avr-rust/blink
Then you can call:
```
make blink_led
```
To flash:
```
# ./flash.sh
./flash.sh /dev/ttyACM0 target/avr-atmega328p/release/blink_led.elf
```