mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
commit
2c38dd17b9
@ -50,7 +50,7 @@ impl<'d, T: Instance> Adc<'d, T> {
|
||||
while T::regs().cr().read().adcal() {}
|
||||
|
||||
// Wait more than 4 clock cycles after adcal is cleared (RM0364 p. 223)
|
||||
delay.delay_us(6 * Self::freq().0 / 1_000_000);
|
||||
delay.delay_us(6 * 1_000_000 / Self::freq().0);
|
||||
|
||||
// Enable the adc
|
||||
T::regs().cr().modify(|w| w.set_aden(true));
|
||||
|
Loading…
Reference in New Issue
Block a user