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.2"
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() {
} ```
In rare cases the interrupt line is shared for different sources, in this case the attribute need to specify the source: ```
unsafe fn myhandlerfor_source() {
} ```
The currently only implemented shared source interrupt line is the AUX
interrupt. There the source could be one of:
Uart1
, Spi1
or Spi2
.
Licensed under Apache License, Version 2.0, (LICENSE or http://www.apache.org/licenses/LICENSE-2.0)