Implemented fifo readout.

This commit is contained in:
2025-08-15 22:23:27 +02:00
parent 8d96817029
commit b3843b529e
3 changed files with 92 additions and 59 deletions

View File

@@ -2,6 +2,7 @@ use bitflags::bitflags;
pub trait Resettable {
fn reset() -> Self;
// fn msk() -> u32;
}
#[allow(dead_code)]
@@ -14,6 +15,9 @@ impl Resettable for T9CON {
fn reset() -> Self {
T9CON::T9Open
}
// fn msk() -> u32 {
// 0b1
// }
}
#[allow(dead_code)]