12 lines
135 B
Rust
12 lines
135 B
Rust
#![no_std]
|
|
|
|
pub mod receive;
|
|
pub mod send;
|
|
|
|
#[derive(Copy, Clone, PartialEq)]
|
|
pub enum Encoding {
|
|
Nrz,
|
|
Nrzi,
|
|
Manchester,
|
|
}
|