File tree 2 files changed +7
-3
lines changed 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
## [ Unreleased]
10
10
11
+ ### Changed
12
+
13
+ - The watchdog API now uses move semantics. See [ PR] ( https://github.com/rust-embedded/embedded-hal/pull/222 ) .
14
+
11
15
## [ v1.0.0-alpha.1] - 2020-06-16
12
16
13
17
** * This is an alpha release with breaking changes (sorry) ** *
Original file line number Diff line number Diff line change 1
1
//! Traits for interactions with a processors watchdog timer.
2
2
3
3
/// Feeds an existing watchdog to ensure the processor isn't reset. Sometimes
4
- /// the "feeding" operation is commonly referred to as "refreshing".
4
+ /// the "feeding" operation is also referred to as "refreshing".
5
5
pub trait Watchdog {
6
6
/// An enumeration of `Watchdog` errors.
7
7
///
@@ -54,7 +54,7 @@ pub trait Disable {
54
54
55
55
/// Disables the watchdog.
56
56
///
57
- /// This stops the watchdog and returns the `Enable` trait so that
58
- /// it can be started again.
57
+ /// This stops the watchdog and returns an instance implementing the
58
+ /// `Enable` trait so that it can be started again.
59
59
fn try_disable ( self ) -> Result < Self :: Target , Self :: Error > ;
60
60
}
You can’t perform that action at this time.
0 commit comments