https://github.com/brainstorm/embassy-as5600
AVR PoC for an AS5600 magnetic encoder jig
https://github.com/brainstorm/embassy-as5600
Last synced: 3 months ago
JSON representation
AVR PoC for an AS5600 magnetic encoder jig
- Host: GitHub
- URL: https://github.com/brainstorm/embassy-as5600
- Owner: brainstorm
- Created: 2024-03-24T09:07:40.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-23T06:15:15.000Z (10 months ago)
- Last Synced: 2025-10-09T02:14:08.754Z (8 months ago)
- Language: Rust
- Size: 31.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quickstart
Flash the Arduino Mega 2560 board with, YMMV:
```sh
cargo run -- -P /dev/ttyUSB0 # Linux
cargo run -- -P /dev/cu.usbserial-124430 # OSX
```
# Prerequisites
```
$ apt-get install avrdude clang pkg-config gcc-avr gdb-avr libelf-dev # Linux
$ brew install avrdude # OSX
$ cargo install ravedude
```
WARNING: Currently crashes on real hardware, possible illegal instruction or more obscure error that needs [close debugging attention](https://n-eq.github.io/blog/2025/05/13/rust-avr-arduino-blink).