]> code.octet-stream.net Git - m17rt/blobdiff - m17app/src/lib.rs
Voice UDP to RF conversion, and better sample rate management in codec2
[m17rt] / m17app / src / lib.rs
old mode 100755 (executable)
new mode 100644 (file)
index 7530aa2..1881df3
@@ -1,4 +1,17 @@
+#![doc = include_str!("../README.md")]
+
 pub mod adapter;
 pub mod app;
 pub mod adapter;
 pub mod app;
+pub mod error;
+pub mod link_setup;
+pub mod rtlsdr;
+pub mod serial;
+pub mod soundcard;
 pub mod soundmodem;
 pub mod tnc;
 pub mod soundmodem;
 pub mod tnc;
+
+#[cfg(test)]
+mod test_util;
+
+// Protocol definitions needed to implement stream and packet adapters or create fully custom LSFs
+pub use m17core::protocol::{LsfFrame, PacketType, StreamFrame};