Expand description
§rsadsb_common
Common library data structures and functions for adsb_deku applications.
Run cargo doc in this directory to generate documentation.
§Usage
ⓘ
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 support
Add the following to your Cargo.toml file to enable no_std code only:
default-features = false
features = ["alloc"]Structs§
- Airplane
Coor - Airplane
Details - Generated by
Airplanes::aircraft_details() - Airplane
State - Value in
BTreeMapofAirplanes - Airplanes
BTreeMapof of all currently trackedICAOandAirplaneState.