You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note:
In fn calibrate,
`while self.rb.cr.read().adcal().is_not_complete() {}`
would be better than
`while !self.rb.cr.read().adcal().is_complete() {}`
However this seems to lack in our version of the PAC
In fn disable,
`self.rb.cr.modify(|_, w| w.aden().disable());`
would be better than
`self.rb.cr.modify(|_, w| w.aden().clear_bit());`
However this seems to lack in our version of the PAC
0 commit comments