#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 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.
#590 (review)
We should try to get away from
DelayUs/DelayMsat 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.