dds: the quadspi fifo is 32 byte deep
This commit is contained in:
parent
2cd611de74
commit
ffb7c8a5b0
|
@ -535,7 +535,7 @@ impl DdsConfig {
|
||||||
|
|
||||||
/// Represents a means of serializing a DDS profile for writing to a stream.
|
/// Represents a means of serializing a DDS profile for writing to a stream.
|
||||||
pub struct ProfileSerializer {
|
pub struct ProfileSerializer {
|
||||||
data: [u8; 16],
|
data: [u8; 32],
|
||||||
index: usize,
|
index: usize,
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
}
|
}
|
||||||
|
@ -548,7 +548,7 @@ impl ProfileSerializer {
|
||||||
fn new(mode: Mode) -> Self {
|
fn new(mode: Mode) -> Self {
|
||||||
Self {
|
Self {
|
||||||
mode,
|
mode,
|
||||||
data: [0; 16],
|
data: [0; 32],
|
||||||
index: 0,
|
index: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue