debug_idle/
debug_idle.rs

1//! Set the DRS4 idle register and then watch the buffers
2
3extern crate liftof_rb;
4
5use liftof_rb::api::*;
6use liftof_rb::control::*;
7
8fn main() {
9
10  match reset_dma() {
11    Ok(_) => (),
12    Err(err) => println!("Unable to reset DMA, error {err}")
13  }
14  run_check();
15}
16