Adding avr_328p_hal crate to README.md#522
Open
Darethan026 wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hello maintainers,
I would like to submit my crate,
avr_328p_halunder the Board Support Package section.Unlike crates that use external dependencies, making large embedded projects slower with each addition, this crate is entirely written from the ATmega328P datasheet specifications using pure
#![no_std]Rust.Key Implementations:
volatileRead/Write pointer operations, making it highly optimised and very performant.Dropimplemented, so that Pins are freed, allowing the driver methods to be used elsewhere.Note: The crate currently relies on stack-allocated buffers to handle printing to the LCD. It currently doesn't include a runtime, but that's not a problem for 95% of the projects it may be used for; A custom runtime is planned for a future release.
It is published on crates.io and documented on docs.rs. Examples are included in the crate's documentation
examples/directory and in the repository'sexamples/directory on GitHub. Thank you for reviewing this Pull Request!