We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0bd3dc commit 9bd5f45Copy full SHA for 9bd5f45
CHANGELOG.md
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
### Added
11
- `Error` traits for Can, SPI, I2C and Serial are implemented for Infallible
12
13
+### Fixed
14
+- Fixed blanket impl of `DelayUs` not covering the `delay_ms` method.
15
+
16
## [v1.0.0-alpha.6] - 2021-11-19
17
18
*** This is (also) an alpha release with breaking changes (sorry) ***
src/delay.rs
@@ -39,5 +39,9 @@ pub mod blocking {
39
fn delay_us(&mut self, us: u32) -> Result<(), Self::Error> {
40
T::delay_us(self, us)
41
}
42
43
+ fn delay_ms(&mut self, ms: u32) -> Result<(), Self::Error> {
44
+ T::delay_ms(self, ms)
45
+ }
46
47
0 commit comments