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
We should try to get away from DelayUs/DelayMs at some point in the future. The API is an invitation for error: Into<u32> strips units, granularity, and context as delay_us(something.into()) looks just as good (but is wrong) if something.into::<u32>() are actually ms.
It does seem like we should leverage as much as possible from fugit.
The text was updated successfully, but these errors were encountered:
#590 (review)
We should try to get away from
DelayUs
/DelayMs
at some point in the future. The API is an invitation for error:Into<u32>
strips units, granularity, and context asdelay_us(something.into())
looks just as good (but is wrong) ifsomething.into::<u32>()
are actually ms.It does seem like we should leverage as much as possible from
fugit
.The text was updated successfully, but these errors were encountered: