maia_httpd/
lib.rs

1//! maia-httpd is part of Maia SDR. It is a web server that controls the Maia
2//! SDR FPGA IP core and the AD9361 RFIC. It provides a RESTful API for these
3//! elements, and serves the web application `maia-wasm`, which functions as the
4//! UI of Maia SDR. Waterfall data is streamed to clients in real time using
5//! WebSockets.
6
7#![warn(missing_docs)]
8
9pub mod app;
10pub mod args;
11pub mod ddc;
12pub mod fpga;
13pub mod httpd;
14pub mod iio;
15pub mod rxbuffer;
16pub mod sigmf;
17pub mod spectrometer;
18pub mod uio;