diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-10-16 19:07:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-16 19:07:28 +0000 |
| commit | 47e4d999072ade9447616a91fbce61561810c75b (patch) | |
| tree | 8f5a1dbf40bcedd583a9fd51404b2ace1b823fb7 /CHANGELOG.md | |
| parent | 8a1f009c34b8cad3f7478aa67432fc60d47be4c0 (diff) | |
| parent | 1ccacf2102fb306867c0afb35d6d5dab43f75baf (diff) | |
Merge #255
255: more monotonic timer docs r=nils-grepit a=japaric
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
cc @jonas-schievink
(EDIT: yay, pull request number 0xFF)
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
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. |
