diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2019-10-15 18:44:49 -0500 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2019-10-15 18:44:49 -0500 |
| commit | eef4e7bf7908d2a99c8d797d6f9d2ac3717e2b63 (patch) | |
| tree | 1d2a7d49ce5443fcc06ab7cad39c7c8907789a70 /CHANGELOG.md | |
| parent | 6196984d6d75be987d3dec3bf17909e3cd40c15b (diff) | |
more monotonic timer docs
covers
- initialization and configuration of the timer; this is now a responsibility of
the application author
- correctness of `Monotonic::now()` in `#[init]`
- safety of `Monotonic::reset()`
closes #251
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 086bb0e..5c858c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## v0.5.0 - 2019-09-?? (currently in beta pre-release) +## v0.5.0 - 2019-??-?? (currently in beta pre-release) ### Added @@ -45,7 +45,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). Cargo features are enabled. - [breaking-change][] the monotonic timer used to implement the `schedule` API - is now user configurable via the `#[app(monotonic = ..)]` argument. + is now user configurable via the `#[app(monotonic = ..)]` argument. IMPORTANT: + it is now the responsibility of the application author to configure and + initialize the chosen `monotonic` timer during the `#[init]` phase. - [breaking-change][] the `peripherals` field is not include in `init::Context` by default. One must opt-in using the `#[app(peripherals = ..)]` argument. |
