File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ use nb;
38
38
/// # impl U32Ext for u32 { fn ms(self) -> MilliSeconds { MilliSeconds(self) } }
39
39
/// # struct Capture1;
40
40
/// # enum Channel { _1 }
41
- /// # impl hal::Capture for Capture1 {
41
+ /// # impl hal::capture:: Capture for Capture1 {
42
42
/// # type Error = Infallible;
43
43
/// # type Capture = u16;
44
44
/// # type Channel = Channel;
Original file line number Diff line number Diff line change 34
34
/// # impl U32Ext for u32 { fn khz(self) -> KiloHertz { KiloHertz(self) } }
35
35
/// # enum Channel { _1, _2 }
36
36
/// # struct Pwm1;
37
- /// # impl hal::Pwm for Pwm1 {
37
+ /// # impl hal::pwm:: Pwm for Pwm1 {
38
38
/// # type Error = Infallible;
39
39
/// # type Channel = Channel;
40
40
/// # type Time = KiloHertz;
Original file line number Diff line number Diff line change 38
38
/// # trait U32Ext { fn s(self) -> Seconds; }
39
39
/// # impl U32Ext for u32 { fn s(self) -> Seconds { Seconds(self) } }
40
40
/// # struct Qei1;
41
- /// # impl hal::Qei for Qei1 {
41
+ /// # impl hal::qei:: Qei for Qei1 {
42
42
/// # type Error = Infallible;
43
43
/// # type Count = u16;
44
44
/// # fn try_count(&self) -> Result<u16, Self::Error> { Ok(0) }
45
- /// # fn try_direction(&self) -> Result<::hal::Direction, Self::Error> { unimplemented!() }
45
+ /// # fn try_direction(&self) -> Result<::hal::qei:: Direction, Self::Error> { unimplemented!() }
46
46
/// # }
47
47
/// # struct Timer6;
48
48
/// # impl hal::timer::CountDown for Timer6 {
You can’t perform that action at this time.
0 commit comments