]> code.octet-stream.net Git - m17rt/blobdiff - m17app/src/lib.rs
Fix timing bugs and add documentation
[m17rt] / m17app / src / lib.rs
index ce67840994f63ec28e5f62bd8c6c8a86470e5f6e..91135151938e23d7db488380ed2b62cb88868d22 100755 (executable)
@@ -1,7 +1,14 @@
+#![doc = include_str!("../README.md")]
+
 pub mod adapter;
 pub mod app;
 pub mod error;
 pub mod link_setup;
 pub mod adapter;
 pub mod app;
 pub mod error;
 pub mod link_setup;
+pub mod rtlsdr;
 pub mod serial;
 pub mod serial;
+pub mod soundcard;
 pub mod soundmodem;
 pub mod tnc;
 pub mod soundmodem;
 pub mod tnc;
+
+// Protocol definitions needed to implement stream and packet adapters or create fully custom LSFs
+pub use m17core::protocol::{LsfFrame, PacketType, StreamFrame};