Crates.io | rsadsb_common |
lib.rs | rsadsb_common |
version | 0.7.0 |
source | src |
created_at | 2023-02-01 02:28:13.8588 |
updated_at | 2024-09-02 22:41:51.194509 |
description | common library for adsb_deku |
homepage | |
repository | https://github.com/wcampbel0x2a/adsb_deku |
max_upload_size | |
id | 773185 |
size | 21,309 |
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"]