rsadsb_common

Crates.iorsadsb_common
lib.rsrsadsb_common
version0.6.3
sourcesrc
created_at2023-02-01 02:28:13.8588
updated_at2023-11-23 03:28:03.580154
descriptioncommon library for adsb_deku
homepage
repositoryhttps://github.com/wcampbel0x2a/adsb_deku
max_upload_size
id773185
size20,027
wcampbell (wcampbell0x2a)

documentation

README

rsadsb_common

github crates.io docs.rs build status

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"]
Commit count: 0

cargo fmt