aboutsummaryrefslogtreecommitdiff
path: root/book
AgeCommit message (Collapse)Author
2020-10-02close console text blocks on a new lineDaniel Carosone
fixes #369
2020-09-15Improved loop example docs to highlight that one cannot have empty loops in idleEmil Fresk
2020-07-15Merge #343bors[bot]
343: Updated URL for example 'init.rs' file r=AfoHT a=regexident (the file at tag '0.5.0' still uses `rtfm`, rather than `rtic` from tag '0.5.3' or later) Co-authored-by: Vincent Esche <regexident@gmail.com>
2020-07-14Updated URL for example 'init.rs' fileVincent Esche
(the file at tag '0.5.0' still uses `rtfm`, rather than `rtic` from tag '0.5.3' or later)
2020-07-14Fixed some more spellingVincent Esche
2020-07-14Unified spelling of "real-time" (vs. "real time")Vincent Esche
(This spelling is consistent with the one provided by Merriam Webster for use an an adjective)
2020-06-12Merge pull request #329 from rtic-rs/v0.5.3_releaseEmil Fresk
Preparing for v0.5.3
2020-06-12Updated book with migration guide for RTFM -> RTICEmil Fresk
2020-06-11Link to GitHub from bookNicolas Stalder
2020-06-11Small renaming fixesHenrik Tjäder
2020-06-11Rename RTFM to RTICHenrik Tjäder
2020-06-11Update resources.mdKENTARO OKUDA
2020-05-13Update app.mdKENTARO OKUDA
2020-04-13fix SLEEPONEXIT reference link in Russian versionPeter Taylor
2020-04-13correct SLEEPONEXIT reference linkPeter Taylor
2020-01-24Reference the correct exampleHenrik Tjäder
2019-12-04book, Russian lang: fix "idle not defined" typoKonstantin Mochalov
Fix typo in Russian translation of book, was "When idle function is declared", should be "When no idle function is declared"
2019-12-03Update migration guide to include the enabling of the the DWT peripheral. ↵Scott Mabin
Also makes note of enable trace with the DCB to allow the DWT to work without a debugger connected.
2019-11-14remove references to 'beta' from the docsJorge Aparicio
2019-11-07Added struct de-structure-ing example in tips & tricksEmil Fresk
2019-10-23Fixed peripherals -> device typoEmil Fresk
2019-10-17version v0.5 is still betaJorge Aparicio
2019-10-17Merge #256bors[bot]
256: add migration guide r=korken89 a=japaric Co-authored-by: Jorge Aparicio <jorge@japaric.io>
2019-10-16ARMv7-M+Jorge Aparicio
2019-10-16add migration guideJorge Aparicio
2019-10-16Merge #255bors[bot]
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>
2019-10-16Update book/en/src/by-example/timer-queue.mdJorge Aparicio
Co-Authored-By: Jonas Schievink <jonasschievink@gmail.com>
2019-10-15more monotonic timer docsJorge Aparicio
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
2019-10-15Merge #252bors[bot]
252: critical sections book: each task gets its own context r=japaric a=chrysn Fixing what was probably a copy-paste error; different tasks each have different types for their context. Co-authored-by: chrysn <chrysn@fsfe.org>
2019-10-15v0.5.0 beta releaseJorge Aparicio
2019-10-10critical sections: each task gets its own contextchrysn
Fixing what was probably a copy-paste error; different tasks each have different types for their context argument.
2019-09-17fix linkchecker warningJorge Aparicio
2019-09-17fix more linksJorge Aparicio
2019-09-17update the CHANGELOGJorge Aparicio
also fix link to the older documentation
2019-09-15Merge #241bors[bot]
241: One more place links updated r=japaric a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
2019-09-15Book fixEmil Fresk
2019-09-15link to older docs from the bookJorge Aparicio
2019-08-21doc tweaksJorge Aparicio
2019-08-21fix preempt exampleJorge Aparicio
2019-08-21fix linkJorge Aparicio
2019-08-21doc upJorge Aparicio
2019-05-09Merge #189bors[bot]
189: write generated code to disk for easier inspection r=japaric a=japaric now that the generated code is actually readable let's make it easier to access this commit also documents how to inspect the generated code via `rtfm-expansion.rs` and `cargo-expand` Co-authored-by: Jorge Aparicio <jorge@japaric.io>
2019-05-08document resolution and range of Instant and DurationJorge Aparicio
2019-05-08fix typoJorge Aparicio
2019-05-08write generated code to disk for easier inspectionJorge Aparicio
now that the generated code is actually readable let's make it easier to access this commit also documents how to inspect the generated code via `rtfm-expansion.rs` and `cargo-expand`
2019-05-01document internalsJorge Aparicio
note that this assumes that RFC #155 has been implemented
2019-05-01book: indirection for faster message passingJorge Aparicio
2019-05-01update the bookJorge Aparicio
2019-04-21book: resources shared with init must also be `Send`Jorge Aparicio
2019-04-21note that late resources must be SendJorge Aparicio