-
I am trying to write a hal for the arduboy. Since the device uses an atmega32u4, I wanted to base my implementation on the arduino uno crate. But it seems that |
Beta Was this translation helpful? Give feedback.
Answered by
Rahix
Sep 14, 2022
Replies: 1 comment 4 replies
-
Yeah, unfortunately we haven't published to crates.io yet (#59). In the meantime, you can just use a git-dependency on [dependencies.atmega-hal]
git = "https://github.com/rahix/avr-hal"
rev = "4cbb163deddac1651ce3374c8d91dbe7b7bb63ff"
features = ["rt", "atmega32u4"] |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
mainrs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah, unfortunately we haven't published to crates.io yet (#59). In the meantime, you can just use a git-dependency on
atmega-hal
like this: