revert to 16 byte dds profile

... as 32 pulls in a slow memclr in flash

A case for MaybeUninit?
This commit is contained in:
Robert Jördens 2021-08-03 09:44:11 +00:00
parent a05fb6b536
commit b7c4858a1d
1 changed files with 2 additions and 2 deletions

View File

@ -536,7 +536,7 @@ impl DdsConfig {
/// Represents a means of serializing a DDS profile for writing to a stream.
pub struct ProfileSerializer {
data: [u8; 32],
data: [u8; 16],
index: usize,
mode: Mode,
}
@ -549,7 +549,7 @@ impl ProfileSerializer {
fn new(mode: Mode) -> Self {
Self {
mode,
data: [0; 32],
data: [0; 16],
index: 0,
}
}