nrz and nrzi are working right now

This commit is contained in:
Priec
2026-05-22 21:40:58 +02:00
parent cb99c9b89b
commit 6dae8c727a
4 changed files with 113 additions and 25 deletions

View File

@@ -2,3 +2,9 @@
pub mod receive;
pub mod send;
#[derive(Copy, Clone, PartialEq)]
pub enum Encoding {
Nrz,
Nrzi,
}