Combine intenset calls

This commit is contained in:
huntc 2021-10-17 06:28:19 +11:00
parent b6cacb98db
commit a020b1a404

View File

@ -295,9 +295,12 @@ impl<'d, const N: usize> Saadc<'d, N> {
// Reset and enable the events // Reset and enable the events
r.events_end.reset(); r.events_end.reset();
r.intenset.write(|w| w.end().set());
r.events_started.reset(); r.events_started.reset();
r.intenset.write(|w| w.started().set()); r.intenset.write(|w| {
w.end().set();
w.started().set();
w
});
// Don't reorder the ADC start event before the previous writes. Hopefully self // Don't reorder the ADC start event before the previous writes. Hopefully self
// wouldn't happen anyway. // wouldn't happen anyway.