@@ -34,12 +34,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
34
34
- [ breaking-change] [ ] [ RFC 155] "explicit ` Context ` parameter" has been
35
35
implemented.
36
36
37
- [ RFC 155 ] : https://github.com/rtfm -rs/cortex-m-rtfm /issues/155
37
+ [ RFC 155 ] : https://github.com/rtic -rs/cortex-m-rtic /issues/155
38
38
39
39
- [ breaking-change] [ ] [ RFC 147] "all functions must be safe" has been
40
40
implemented.
41
41
42
- [ RFC 147 ] : https://github.com/rtfm -rs/cortex-m-rtfm /issues/147
42
+ [ RFC 147 ] : https://github.com/rtic -rs/cortex-m-rtic /issues/147
43
43
44
44
- All the queues internally used by the framework now use ` AtomicU8 ` indices
45
45
instead of ` AtomicUsize ` ; this reduces the static memory used by the
@@ -57,7 +57,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
57
57
58
58
- [ breaking-change] [ ] when the ` schedule ` API is used the type of
59
59
` init::Context.core ` changes from ` cortex_m::Peripherals ` to
60
- ` rtfm ::Peripherals` . The fields of ` rtfm ::Peripherals` do not change when
60
+ ` rtic ::Peripherals` . The fields of ` rtic ::Peripherals` do not change when
61
61
Cargo features are enabled.
62
62
63
63
- [ breaking-change] [ ] the monotonic timer used to implement the ` schedule ` API
@@ -85,7 +85,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
85
85
syntax. ` init::LateResources ` is the only method to initialize late resources.
86
86
See [ PR #140 ] for more details.
87
87
88
- [ PR #140 ] : https://github.com/rtfm -rs/cortex-m-rtfm /pull/140
88
+ [ PR #140 ] : https://github.com/rtic -rs/cortex-m-rtic /pull/140
89
89
90
90
## [ v0.4.3] - 2019-04-21
91
91
@@ -114,7 +114,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
114
114
` binds ` argument that lets you give the handler an arbitrary name. For
115
115
example:
116
116
117
- [ RFC 128 ] : https://github.com/rtfm -rs/cortex-m-rtfm /issues/128
117
+ [ RFC 128 ] : https://github.com/rtic -rs/cortex-m-rtic /issues/128
118
118
119
119
``` rust
120
120
// on v0.4.1 you had to write
@@ -146,8 +146,8 @@ fn on_new_frame() { .. }
146
146
147
147
### Added
148
148
149
- - The RTFM book has been translated to Russian. You can find the translation
150
- online at https://japaric.github.io/cortex-m-rtfm /book/ru/
149
+ - The RTIC book has been translated to Russian. You can find the translation
150
+ online at https://japaric.github.io/cortex-m-rtic /book/ru/
151
151
152
152
- ` Duration ` now implements the ` Default ` trait.
153
153
@@ -187,11 +187,11 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
187
187
` Resource.claim_mut ` has been renamed to ` Mutex.lock ` and its signature has
188
188
changed (no ` Threshold ` token is required).
189
189
190
- - [ breaking-change] The name of the library has changed to ` rtfm ` . The package
191
- name is still ` cortex-m-rtfm ` .
190
+ - [ breaking-change] The name of the library has changed to ` rtic ` . The package
191
+ name is still ` cortex-m-rtic ` .
192
192
193
- - [ breaking-change] ` cortex_m_rtfm ::set_pending` has been renamed to
194
- ` rtfm ::pend` .
193
+ - [ breaking-change] ` cortex_m_rtic ::set_pending` has been renamed to
194
+ ` rtic ::pend` .
195
195
196
196
### Added
197
197
@@ -210,7 +210,7 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
210
210
211
211
- [ breaking-change] The ` bkpt ` and ` wfi ` re-exports have been removed.
212
212
213
- - [ breaking-change] ` rtfm ::atomic` has been removed.
213
+ - [ breaking-change] ` rtic ::atomic` has been removed.
214
214
215
215
## [ v0.3.4] - 2018-08-27
216
216
@@ -313,20 +313,20 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
313
313
314
314
- Initial release
315
315
316
- [ Unreleased ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.5.2...HEAD
317
- [ v0.5.2 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.5.1...v0.5.2
318
- [ v0.5.1 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.5.0...v0.5.1
319
- [ v0.5.0 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.4.3...v0.5.0
320
- [ v0.4.3 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.4.2...v0.4.3
321
- [ v0.4.2 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.4.1...v0.4.2
322
- [ v0.4.1 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.4.0...v0.4.1
323
- [ v0.4.0 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.3.4...v0.4.0
324
- [ v0.3.4 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.3.3...v0.3.4
325
- [ v0.3.3 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.3.2...v0.3.3
326
- [ v0.3.2 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.3.1...v0.3.2
327
- [ v0.3.1 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.3.0...v0.3.1
328
- [ v0.3.0 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.2.2...v0.3.0
329
- [ v0.2.2 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.2.1...v0.2.2
330
- [ v0.2.1 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.2.0...v0.2.1
331
- [ v0.2.0 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.1.1...v0.2.0
332
- [ v0.1.1 ] : https://github.com/rtfm -rs/cortex-m-rtfm /compare/v0.1.0...v0.1.1
316
+ [ Unreleased ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.5.2...HEAD
317
+ [ v0.5.2 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.5.1...v0.5.2
318
+ [ v0.5.1 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.5.0...v0.5.1
319
+ [ v0.5.0 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.4.3...v0.5.0
320
+ [ v0.4.3 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.4.2...v0.4.3
321
+ [ v0.4.2 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.4.1...v0.4.2
322
+ [ v0.4.1 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.4.0...v0.4.1
323
+ [ v0.4.0 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.3.4...v0.4.0
324
+ [ v0.3.4 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.3.3...v0.3.4
325
+ [ v0.3.3 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.3.2...v0.3.3
326
+ [ v0.3.2 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.3.1...v0.3.2
327
+ [ v0.3.1 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.3.0...v0.3.1
328
+ [ v0.3.0 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.2.2...v0.3.0
329
+ [ v0.2.2 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.2.1...v0.2.2
330
+ [ v0.2.1 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.2.0...v0.2.1
331
+ [ v0.2.0 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.1.1...v0.2.0
332
+ [ v0.1.1 ] : https://github.com/rtic -rs/cortex-m-rtic /compare/v0.1.0...v0.1.1
0 commit comments