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
Copy file name to clipboardExpand all lines: src/lib.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
//! * You plan on using a single motor without the standby feature: use [`Motor`]
12
12
//!
13
13
//! ## Optional features
14
-
//! * `defmt`: you can enable the `defmt` feature to get a `defmt::debug!` call for every speed change.
14
+
//! * `defmt`: you can enable the `defmt` feature to get a `defmt::Format` implementation for all structs & enums in this crate and a `defmt::debug` call for every speed change.
15
15
16
16
#![forbid(unsafe_code)]
17
17
#![forbid(warnings)]
@@ -121,7 +121,7 @@ where
121
121
/// Enable standby. This ignores any other setting currently done on the motors and puts them into standby.
122
122
///
123
123
/// Note that this does not change any commands on the motors, i.e. the PWM signal will continue
124
-
/// and once [`disable_standby`] is called the motor will pick up where it left off (unless the command was changed in-between).
124
+
/// and once [`Tb6612fng::disable_standby`] is called the motor will pick up where it left off (unless the command was changed in-between).
0 commit comments