BMS Shared Memory

Read BMS shared memory data
Quick example:
use bms_sm::*;
use std::time::Duration;
use tokio::time::sleep;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
let mut mem = IntellivibeData::new();
loop {
if mem.is_ok() {
break;
}
sleep(Duration::from_millis(300)).await;
mem = IntellivibeData::new();
}
let mem = mem?;
tokio::spawn(async move {
loop {
dbg!(mem.read());
sleep(Duration::from_secs(5)).await;
}
});
tokio::signal::ctrl_c().await?;
Ok(())
}
Currently implemented interfaces:
IntellivibeData (FalconSharedMemoryArea)
FlightData (FalconIntellivibeSharedMemoryArea)
StringsData (FalconSharedMemoryAreaString)