aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example
AgeCommit message (Collapse)Author
2020-11-14Add multilock to the bookEmil Fresk
2020-11-12Merge #411bors[bot]
411: Add section about task_local and lock_free r=perlindgren a=AfoHT Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2020-11-12Merge #408bors[bot]
408: Fixup app/new r=perlindgren a=AfoHT Reference the current example Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2020-11-12Add static mutHenrik Tjäder
2020-11-12Merge #410bors[bot]
410: resources r=AfoHT a=perlindgren resources Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
2020-11-12Add section about task_local and lock_freeHenrik Tjäder
2020-11-12resources fixPer Lindgren
2020-11-12resourcesPer Lindgren
2020-11-12Merge #409bors[bot]
409: Updated send/sync docs r=AfoHT a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
2020-11-12Updated send/sync docsEmil Fresk
2020-11-12Fixup app/newHenrik Tjäder
2020-11-12Fixed spawn and timer queue docsEmil Fresk
2020-11-12Merge #405 #406bors[bot]
405: Updated migration guide with symmetric locks and new spawn r=AfoHT a=korken89 406: book.toml/by-example/app r=korken89 a=perlindgren Book update Co-authored-by: Emil Fresk <emil.fresk@gmail.com> Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
2020-11-12book.toml/by-example/appPer Lindgren
2020-11-12Fixup app/tipsHenrik Tjäder
2020-10-15Made relation between priority and number explicitDion Dokter
When quickly reading through the priorities chapter, I couldn't find in which order the priorities were, so I assumed it was the same as in the hardware. In the cortex-m hardware, interrupts with the **lower** priority number will preempt the other interrupts. RTIC does the reverse, so I think it's good to be more explicit about it.
2020-10-13device path must be absolute; clarifyDaniel Carosone
2020-10-07Merge branch 'master'Daniel Carosone
of https://github.com/rtic-rs/cortex-m-rtic
2020-10-05Merge #368bors[bot]
368: Mod over const r=korken89 a=AfoHT Related [RFC](https://github.com/rtic-rs/rfcs/pull/34) Dependent on [rtic-syntax-PR30](https://github.com/rtic-rs/rtic-syntax/pull/30) ~~Currently using my own dev-branch~~ Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2020-10-03Updated documentation to include the critical section token in initEmil Fresk
2020-10-02minor markdownlintsDaniel Carosone
2020-10-02Shared access is useful with interior mutabilityDaniel Carosone
2020-10-02Clarify the need for resources-attributeHenrik Tjäder
2020-10-02close console text blocks on a new lineDaniel Carosone
fixes #369
2020-10-02Add migration to 0.6 along with updated documentationHenrik Tjäder
2020-10-01Start updating the bookHenrik Tjäder
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-11Rename RTFM to RTICHenrik Tjäder
2020-06-11Update resources.mdKENTARO OKUDA
2020-05-13Update app.mdKENTARO OKUDA
2020-04-13correct SLEEPONEXIT reference linkPeter Taylor
2020-01-24Reference the correct exampleHenrik Tjäder
2019-11-14remove references to 'beta' from the docsJorge Aparicio
2019-11-07Added struct de-structure-ing example in tips & tricksEmil Fresk
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-15v0.5.0 beta releaseJorge Aparicio
2019-09-17fix more linksJorge Aparicio
2019-08-21doc tweaksJorge Aparicio
2019-08-21fix preempt exampleJorge Aparicio
2019-08-21doc upJorge 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-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