A toolkit to write better device drivers, faster.
See this example to see how it works. There's also this OPL2 device driver that is used as reference register implementation for this crate.
You can now also generate an async interface. See this example. This is only supported on a recent nightly as of writing (13-12-22).
Feedback and feature requests are appreciated! Just open an issue on github.
```rust // Create our low level device. This holds all the hardware communication definitions createlowleveldevice!( /// Our test device MyDevice { // The types of errors our low level error enum must contain errors: [InterfaceError], hardwareinterfacerequirements: { RegisterInterface }, hardwareinterface_capabilities: { fn reset(&mut self) -> Result<(), InterfaceError>; }, } );
// Create a register set for the device
implement_registers!(
/// The global register set that uses a u8 as register address
MyDevice.registers
/// Does some random register things to showcase how everything works
fn run
// Print the id. It is marked with `#[generate(Debug)]`,
// so it should only show all fields
println!("{:?}", id);
// Enable output on pin 0
device
.registers()
.port()
.write(|w| w.output_0(Bit::Set).mask_0(Bit::Set))?;
// Disable the irq status bit
device
.registers()
.irq_settings()
.modify(|_, w| w.irq_status(Bit::Cleared))?;
}
Ok(())
} ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
This crate is far from stable. But if it works for you, then I see no reason why you couldn't use it already. Only updating to a new version may break stuff and proper Semver will be used.
Accidentally left the async flag on by default for 0.4.0 which caused it not to compile on stable.
Added async support for the register interfaces. Use the async
feature flag to activate it.
When you do, you will have access to the ll::register_async
module that will generate async code for you.
Added docs to low level error (#14)
Added better Debug
impls to all register R
that prints the raw value in hex.
There's now also the option (#[generate(Debug)]
) to get an even better Debug
impl that also prints out all the fields,
but does require all fields to impl Debug
themselves.
See (#10) to see how it works.
All user interaction with a 'W' is now through &mut instead of directly to support more kinds of code structuring (#7)