pull/237/head
Sebastien Bourdeauducq 2023-05-30 12:22:46 +08:00
parent 165b1400ab
commit f1ee3a7584
1 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,5 @@
use core::cmp::min;
use libboard_artiq::{drtioaux_proto::ANALYZER_MAX_SIZE, pl::csr};
use libcortex_a9::cache;
@ -35,7 +36,7 @@ pub struct Analyzer {
// necessary for keeping track of sent data
data_len: usize,
sent_bytes: usize,
data_pointer: usize
data_pointer: usize,
}
pub struct Header {
@ -62,7 +63,7 @@ impl Analyzer {
Analyzer {
data_len: 0,
sent_bytes: 0,
data_pointer: 0
data_pointer: 0,
}
}