A software-defined radio operating system written in pure Rust that exploits ionospheric propagation physics. The Earth's plasma canopy becomes a planetary-scale reflector and delay-tolerant memory buffer — covert beyond-line-of-sight communication with zero internet infrastructure, zero routing tables, and zero single points of failure.
DSSS spread-spectrum buries the signal 20–30 dB under the cosmic noise floor. Adversarial spectrum analyzers see only static.
Cryptographic node IDs, TTL flood dedup, and 1.5× redundant shard routing — the network heals itself through blackouts.
cargo run --release -p abos-cli -- transmit test_payload.bin --freq 5.35MHz
ABOS is structured as 13 modular, zero-warning Rust crates coordinated by the root ABOSSystem orchestrator.
Each layer operates with zero heap allocations on the hot streaming path and enforces strict mathematical boundaries.
Hardware abstraction layer for USRP B210, LimeSDR, HackRF, and RTL-SDR. Zero-copy DMA streaming, GPIO T/R antenna switching, and GPSDO synchronization.
Complete DSP chain: DDC, SIMD FIR decimation, AGC, I/Q imbalance correction, Costas carrier sync, Gardner timing recovery, and 256-subcarrier OFDM.
Physical layer modulators: DSSS with Gold/PN codes, FHSS frequency hopping, scrambler, Barker sync words, and sub-millisecond microburst framing.
(256, 512) Low-Density Parity-Check (LDPC) forward error correction, BICM interleaver, soft-decision Log-Likelihood Ratio (LLR) mapping, and CRC32.
Fountain-style shard splitting (1.5× redundancy), DTN store-and-forward bundles, Buffer-Bounce engine, beacon mesh discovery, and hash-dedup flooding.
Real-time spectrum scanner (FFT), automated jammer detection, spectral white-space locator, and adaptive Modulation & Coding Scheme (MCS) controller.
Live chirp sounder, ionospheric critical plasma frequency estimation (f0F2 ≈ 9·√Ne), NVIS frequency selector, and meteor-burst detection.
Cyclostationary signature masking via variable symbol rates, artificial phase noise injection, scintillation amplitude dithering, and randomized burst timing.
Persistent embedded DTN bundle store built on sled with dedup-on-insert, TTL eviction, pending-transmission listing, and disk buffering for blackout survival.
Complex DSP mathematics, ChaCha20-seeded PRNG, Gold code generators, AES/HMAC cryptography, and cryptographic node IDs derived from public keys.
Command-line binary providing 10 production subcommands with typed exit codes: start, stop, transmit, receive, scan, status, configure, chirp, mesh, and forward.
Native desktop graphical cockpit built on egui, featuring live spectrum waterfall, ionospheric sounding charts, and DTN bundle visualization.
Integration harness: loopback RF channel with loss/duplication/AWGN noise, full modem pipeline round-trips, 3-node mesh scenarios, and deterministic fault injection.
Every byte transmitted over ABOS traverses an integrated, deterministic pipeline orchestrated by ABOSSystem.
Data is mathematically prepared for noisy ionospheric scattering, wrapped in stealth masking, and recovered with soft-decision belief propagation.
Conventional communications collapse when towers lose power or fiber cables are cut. ABOS leverages a resource that cannot be physically destroyed or switched off: the Earth's ionized plasma canopy.
Standard HF shoots waves at low elevation angles, producing an unreachable "skip zone" between 50 and 500 km. NVIS launches RF energy at 70°–90° directly into the F2 layer. The wave refracts back down like a circular umbrella, delivering uniform coverage over mountainous or rough terrain with zero skip zone and no line-of-sight requirement.
With processing gain ≥ 20–30 dB (e.g., 1 kbps symbol rate spread over a 1 Mcps Gold code), the power spectral density sits comfortably beneath the thermal noise floor. Adversarial spectrum analyzers observe only static. Cyclostationary feature masking dithers symbol rates and injects phase noise to defeat spectral autocorrelation.
When solar storms or deep-night plasma recombination close normal NVIS reflection channels, the cognitive sounder listens for microscopic meteors vaporizing in the mesosphere (80–120 km). Each ionized streak creates a transient reflective channel lasting 100–800 ms. The Phoenix Scheduler fires pre-buffered DTN shards during these instant windows.
Nodes operate without IP addresses: identities are cryptographic hashes of public keys. Bundles flood with hop counts, TTL, and content-hash deduplication; ACK-driven exponential backoff retransmits what was lost. Furthermore, ABOS interfaces with Global Ghost Net (Vantablack) to serve as an out-of-band physical fallback when terrestrial fiber and satellite carriers are severed.
The abos-cli binary provides full headless control of the SDR hardware, ionospheric sounders, DTN bundle store, and mesh forwarding daemon.
Splits the file into 1.5× redundant shards, LDPC-encodes, spreads with DSSS, and fires it at the selected HF carrier.
Runs continuous coherent listening, despreads bursts, belief-propagation decodes LDPC parity, and reassembles the original file from any surviving shard subset.
Beacons announce your node to peers; received bundles you don't own get hop-incremented and rebroadcast. ACKs drive exponential-backoff retransmission.
abos_config.json, including SDR gain, DSSS chip rate, FEC code rate, and storage limits.Why physical ionospheric reflection and cognitive spread-spectrum SDR provide sovereign reliability that satellites and cellular infrastructure cannot deliver.
| Capability & Plain English Purpose | ABOS | Cellular / Fiber / Microwave | LEO Satellites (Starlink, Kuiper) | Legacy Military HF (ALE) |
|---|---|---|---|---|
|
Physical Vulnerability
What happens when towers lose power, cables are cut, or ground stations are struck?
|
Indestructible — the reflecting medium is the planetary plasma ceiling itself | Towers knocked out, fiber cut, power grid loss | Uplink ground stations vulnerable, ASAT weapons | Base stations easily targeted by DF |
|
Central Points of Control
Can the network be seized or switched off by attacking a company or kill-switch?
|
Zero — autonomous peer nodes, cryptographic IDs, no accounts | High — telco switches, state kill-switches | High — proprietary corporate gateways | Medium — central military net controllers |
|
Electronic Warfare Resistance
What does a jammer or adversarial spectrum analyzer actually see?
|
DSSS below the noise floor + cyclostationary masking — analyzers see static | Easily jammed across line-of-sight | Vulnerable to directional uplink jamming | Fixed power, vulnerable to barrage jamming |
|
Skip-Zone Blind Spots
Are there geographic gaps where the signal simply cannot land?
|
Zero skip zone — 70°–90° NVIS umbrella coverage | Limited to direct line-of-sight | Requires clear sky / satellite overhead | Severe skip zone — 50–500 km dead zone |
|
Blackout & Partition Recovery
What happens after hours of silence, jamming, or airplane-mode style cuts?
|
DTN store-and-forward + 1.5× shard redundancy — messages survive the gap | Retransmit once links return | Session re-negotiation / reconnect delay | Circuit rebuild from scratch |
|
Network Topology
How does traffic find its way, and what state must every node keep?
|
Delay-tolerant sharding + Buffer-Bounce flood dedup — no routing tables | Hierarchical IP routing tables | Proprietary orbital mesh routing | Point-to-point selective calling |
|
Ghost-Net Integration
Can it pair with a terrestrial mesh when the skywave band is closed?
|
Native WAN-to-skywave failover with Vantablack (Global Ghost Net) | None | None | None |
Read the complete technical specifications, subsystem architecture, command-line operations manual, and verification test matrix.