Radio Streaming Server

Last Active: 2026-02-22 Rust

Contents

Concept

Cross-platform server (targeting Raspberry Pi) that manages multiple SDR devices (RTL-SDR, AirSpy HF+) and streams raw IQ samples over the network using the rtl_tcp protocol. A single binary replaces multiple C-based streaming tools, adding a TUI for live device management, TOML configuration, and safe concurrency across all connected radios.

Existing C implementations (rtl_tcp, hfp_tcp) are single-threaded and require separate processes per device. This server manages all SDRs through one binary with real-time frequency and gain adjustment from the terminal.


Technical Reports


Features


Quick Facts

   
Status Recently Updated
Stack Rust

What This Is

A cross-platform (targeted at Raspberry Pi) server that interfaces with multiple SDR devices (RTL-SDR, AirSpy HF+) and streams raw IQ samples over the network using the industry-standard rtl_tcp protocol. It features a built-in TUI for live configuration and device management.


Why It Exists

Existing C-based implementations (like rtl_tcp and hfp_tcp) are often single-threaded, difficult to manage when running multiple devices, and lack modern observability/control features. This project aims to:


Core Value

The ability to reliably and efficiently stream high-fidelity IQ data from multiple SDRs over a network with a modern management interface.


Tech Stack


Requirements


# Validated

(None yet — ship to validate)


# Active


# Out of Scope


Key Decisions

Decision Rationale Outcome
Wrapping C Libs Faster implementation of hardware logic while focusing on the Rust networking/UI layer. Pending
Monolithic Binary Easier to manage and deploy initially via SSH. Pending
TOML Config Human-readable and easy to edit or programmatically update. Pending

Last updated: 2026-02-12 after initialization


Current Status

2026-02-22 - Completed 05-04-PLAN.md