v1.0.0-rc.2
·
123 commits
to master
since this release
- Minor document fixes.
- Add #[inline] hints to most of
embedded-hal
functions. - pwm: rename
get_max_duty_cycle
tomax_duty_cycle
. - delay: Rename
DelayUs
toDelayNs
- delay: Add
DelayNs::delay_ns()
- delay: Add default impls of
delay_ms
anddelay_us
based ondelay_ns
. - delay: Make the default impl of
delay_ms
more efficient, it now does less calls to the underlyingdelay_ns
(previouslydelay_us
). - spi: Rename
Operation::DelayUs
toOperation::DelayNs
, with nanosecond precision.