Merge all of the crc_v2 configurations into a single modify call

This commit is contained in:
Joshua Salzedo 2021-09-26 18:46:19 -07:00
parent 8fac444c4e
commit f9ff5336d4
No known key found for this signature in database
GPG Key ID: C3D0EB484493B731

View File

@ -55,59 +55,55 @@ impl Crc {
CRC::reset(); CRC::reset();
let mut instance = Self { let mut instance = Self {
_peripheral: peripheral, _peripheral: peripheral,
_config: config _config: config,
}; };
unimplemented!(); unimplemented!();
// instance.init(); // instance.init();
// instance // instance
} }
// Configure device settings
fn configure_revout(&mut self) {
pub fn reset(&mut self) {
unsafe { PAC_CRC.cr().modify(|w| w.set_reset(true)); }
}
fn reconfigure(&mut self) {
unsafe { unsafe {
PAC_CRC.cr().modify(|w| {w.set_rev_out( // Init CRC value
PAC_CRC.init().write_value(self._config.crc_init_value);
PAC_CRC.cr().modify(|w| {
// configure reverse output
w.set_rev_out(
match self._config.reverse_out { match self._config.reverse_out {
true => { vals::RevOut::REVERSED } true => { vals::RevOut::REVERSED }
false => { vals::RevOut::NORMAL } false => { vals::RevOut::NORMAL }
} }
)}) );
} // configure reverse input
} w.set_rev_in(
fn configure_revin(&mut self) {
unsafe {
PAC_CRC.cr().modify(|w| {w.set_rev_in(
match self._config.reverse_in { match self._config.reverse_in {
CrcInputReverseConfig::None => { vals::RevIn::NORMAL } CrcInputReverseConfig::None => { vals::RevIn::NORMAL }
CrcInputReverseConfig::Byte => { vals::RevIn::BYTE } CrcInputReverseConfig::Byte => { vals::RevIn::BYTE }
CrcInputReverseConfig::Halfword => { vals::RevIn::HALFWORD } CrcInputReverseConfig::Halfword => { vals::RevIn::HALFWORD }
CrcInputReverseConfig::Word => { vals::RevIn::WORD } CrcInputReverseConfig::Word => { vals::RevIn::WORD }
} }
)}) );
} // configure the polynomial.
} w.set_polysize(
fn configure_polysize(&mut self) {
unsafe {
PAC_CRC.cr().modify(|w| {w.set_polysize(
match self._config.poly_size { match self._config.poly_size {
PolySize::Width7 => { vals::Polysize::POLYSIZE7 } PolySize::Width7 => { vals::Polysize::POLYSIZE7 }
PolySize::Width8 => { vals::Polysize::POLYSIZE8 } PolySize::Width8 => { vals::Polysize::POLYSIZE8 }
PolySize::Width16 => { vals::Polysize::POLYSIZE16 } PolySize::Width16 => { vals::Polysize::POLYSIZE16 }
PolySize::Width32 => { vals::Polysize::POLYSIZE32 } PolySize::Width32 => { vals::Polysize::POLYSIZE32 }
} }
)}) )
}
})
} }
pub fn reset(&mut self) { self.reset();
unsafe { PAC_CRC.cr().modify(|w| w.set_reset(true)); }
}
fn set_crc_init(&mut self, value: u32) {
unsafe {
PAC_CRC.init().write_value(value)
} }
} }
}