mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
book: Restore accidentally removed files
This commit is contained in:
parent
5adee8d3f9
commit
7af09cb126
4 changed files with 8 additions and 2 deletions
|
@ -12,6 +12,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- `examples/periodic-at2.rs`, an example of a periodic process with two tasks, with offset timing. Here we depict two alternative usages of the timer type, explicit and trait based.
|
||||
- book: Update `Monotonic` tips.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Readded missing ramfunc output to book
|
||||
|
||||
## [v1.0.0] - 2021-12-25
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -35,10 +35,10 @@ One can look at the output of `cargo-nm` to confirm that `bar` ended in RAM
|
|||
|
||||
``` console
|
||||
$ cargo nm --example ramfunc --release | grep ' foo::'
|
||||
{{#include ../../../../ci/expected/ramfunc.grep.foo}}
|
||||
{{#include ../../../../ci/expected/ramfunc.run.grep.foo}}
|
||||
```
|
||||
|
||||
``` console
|
||||
$ cargo nm --example ramfunc --release | grep ' bar::'
|
||||
{{#include ../../../../ci/expected/ramfunc.grep.bar}}
|
||||
{{#include ../../../../ci/expected/ramfunc.run.grep.bar}}
|
||||
```
|
||||
|
|
1
ci/expected/ramfunc.run.grep.bar
Normal file
1
ci/expected/ramfunc.run.grep.bar
Normal file
|
@ -0,0 +1 @@
|
|||
20000000 t ramfunc::bar::h9d6714fe5a3b0c89
|
1
ci/expected/ramfunc.run.grep.foo
Normal file
1
ci/expected/ramfunc.run.grep.foo
Normal file
|
@ -0,0 +1 @@
|
|||
00000162 t ramfunc::foo::h30e7789b08c08e19
|
Loading…
Reference in a new issue