This crate implements an abstraction of the mailbox property tag interface available in the Raspberry Pi. There are currently a limmited number of functions for the following property tag messages implemented: - GetArmMemory - GetClockRate - SetClockRate
Check the official documentation of those property tags and their purpose.
To use the crate just add the following dependency to your Cargo.toml
file:
[dependencies]
ruspiro-mailbox = "0.2"
Once done the access to the mailbox interface access is available in your rust files like so: ``` use ruspiro_mailbox::*;
fn demo() { // use the mailbox to retrieve the core clock rate if let Ok(corerate) = MAILBOX.takefor(|mb| mb.getclockrate(ArmClockId::Core)) { // here we know the core clock rate do something with it... println!("Core clock rate {}", corerate); } } ```
Licensed under Apache License, Version 2.0, (LICENSE or http://www.apache.org/licenses/LICENSE-2.0)