orion-sdr 0.0.42

DSP/SDR block library targeting HF-to-EHF, satellites, and Python bindings. Roadmap inside.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2026 G & R Associates LLC
// SPDX-License-Identifier: MIT OR Apache-2.0

pub mod callsign;
pub mod free_text;
pub mod grid;
#[allow(clippy::module_inception)] // inner `message` module matches the FT8 packer naming
pub mod message;
pub mod tables;

pub use callsign::CallsignHashTable;
pub use grid::{GridField, gridfield_to_str};
pub use message::{Ft8Message, NonstdExtra, Payload77, pack77, unpack77};