This crates provides functions and macros (custom attributes) to conviniently define and implement interrupt handler for the Raspberry Pi 3 in a bare metal environment.
This crate, when used to build a final binarry assumes that certain linker symbols does exist and are defined. These are
usually provided when using the ruspiro-boot
crate which comes with a linker
script providing all the necessary linker symbols and entrypoints calling into this crate once it is used.
To use the crate just add the following dependency to your Cargo.toml
file:
[dependencies]
ruspiro-interrupt = "0.1.0"
Once done the access to the features/attribute of the interrupt crate is available in your rust files like so: ``` use ruspiro-interrupt::*;
unsafe fn my_handler() {
} ```
Licensed under Apache License, Version 2.0, (LICENSE or http://www.apache.org/licenses/LICENSE-2.0)