Crates.io | lvbitfile2rust-cli |
lib.rs | lvbitfile2rust-cli |
version | 0.1.1 |
source | src |
created_at | 2020-08-23 09:09:27.38097 |
updated_at | 2020-08-23 15:35:05.88331 |
description | Command line entrypoint for the lvbitfile2rust crate |
homepage | |
repository | https://github.com/first-rust-competition/lvbitfile2rust |
max_upload_size | |
id | 279757 |
size | 7,309 |
lvbitfile2rust generates static register maps from lvbitx files.
cargo install lvbitfile2rust
lvbitfile2rust-cli /boot/user.lvbitx | rustfmt > rio.rs
mod rio {
use lvbitfile2rust_macros::lvbitfile2rust;
lvbitfile2rust!("/boot/user.lvbitx");
}
lvbitfile2rust generates code with a similar interface to code generated by svd2rust. The generated code contains a struct named Peripherals
with an associated function named take
. Calling take
will attempt to open an FPGA session and return a Peripherals
instance. The Peripherals
instance contains fields for each register described by the input bitfile. These fields contain instances of structs corresponding to each register, with read
and possibly write
methods. In practice, the interface is rather straightforward to use:
use ni_fpga::fxp::UnsignedFXP;
mod rio {
use lvbitfile2rust_macros::lvbitfile2rust;
lvbitfile2rust!("/boot/user.lvbitx");
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Turn PWM on if the RSL is on!
// My scope tells me the RSL blinks at 5Hz in teleop mode!
let peripherals = rio::Peripherals::take("RIO0")?;
loop {
let leds = peripherals.LEDs.read()?;
peripherals.PWM_Hdr0.write(&{
if leds.RSL {
UnsignedFXP::max_value()
} else {
UnsignedFXP::min_value()
}
})?;
}
}
Generated code will depend on ni-fpga and ni-fpga-macros if the input bitfile uses Clusters or Enums.