| Crates.io | rsadsb_common |
| lib.rs | rsadsb_common |
| version | 0.8.0 |
| created_at | 2023-02-01 02:28:13.8588+00 |
| updated_at | 2025-05-03 17:34:51.462093+00 |
| description | common library for adsb_deku |
| homepage | |
| repository | https://github.com/wcampbel0x2a/adsb_deku |
| max_upload_size | |
| id | 773185 |
| size | 39,558 |
Common library data structures and functions for adsb_deku applications.
Run cargo doc in this directory to generate documentation.
let mut adsb_airplanes = Airplanes::new();
if let Ok((bytes_left, frame)) = Frame::from_bytes((&bytes, 0)) {
adsb_airplanes.action(frame, (lat, long), max_range);
}
no_std supportAdd the following to your Cargo.toml file to enable no_std code only:
default-features = false
features = ["alloc"]