aboutsummaryrefslogtreecommitdiff
path: root/examples/periodic.rs
AgeCommit message (Collapse)Author
2023-03-01more examplesPer Lindgren
2023-03-01Old xtask test passEmil Fresk
2023-01-21Deny missing_docs for all examplesHenrik Tjäder
2023-01-11Remove ok() from hprintln!()Henrik Tjäder
sd 'hprintln(.*).ok\(\)' 'hprintln' (fd -e rs .)
2021-12-26Improved docs on where the 12 MHz comes from in SysTickEmil Fresk
2021-11-09New monotonic trait workingEmil Fresk
2021-10-13remove outdated commentPer Lindgren
2021-09-23The great docs updateEmil Fresk
2021-07-07Fixing testsEmil Fresk
2021-04-07Updated dwt-systick-monotonicEmil Fresk
2021-02-23GHA updateEmil Fresk
Fmt fixes Spawn_after did not work with parameters Examples working again Revert "GHA update" This reverts commit e0a71d4859966a6c5cf2629d3cb27e88acada9c0. Readd flags Only add DWT based dep with __v7 flag
2021-02-20Test fixesEmil Fresk
2020-10-23move dispatchers to app argumentPer Lindgren
2020-10-21Updated examplesEmil Fresk
More work
2020-10-11Fixing examples and tests, modules now import user imports correctlyEmil Fresk
Fmt Correct syntax crate UI test fix Fix build script Cleanup More cleanup
2020-10-05Merge branch 'master' into always_late_resourcesEmil Fresk
2020-10-01Now late resources are always usedEmil Fresk
2020-09-25Modules using lower-case in examplesHenrik Tjäder
2020-09-25Examples using mod instead of constHenrik Tjäder
2020-06-26Examples: Clarify extern sectionDanilo Bargen
Some beginners are confused about the "extern" section, so I added an explanation comment to all examples. Furthermore, using the UARTx interrupts when UART is actually being used in the same example may be confusing, so I changed them all to SSI0/QEI0.
2020-06-11Rename RTFM to RTICHenrik Tjäder
2020-05-26Update example to use better initial valueRussell Sim
The example above this in the documentation states ``` // semantically, the monotonic timer is frozen at time "zero" during `init` // NOTE do *not* call `Instant::now` in this context; it will return a nonsense value let now = cx.start; // the start time of the system ``` It results in weird scheduling issues, but still eventually works. `cx.start` is much more reliable. Relates to https://github.com/rtfm-rs/cortex-m-rtfm/issues/196
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-08-21doc upJorge Aparicio
2019-06-13rtfm-syntax refactor + heterogeneous multi-core supportJorge Aparicio
2019-05-01update examplesJorge Aparicio
2018-11-04use new cortex_m_semihosting::hprintln macroJorge Aparicio
2018-11-03v0.4.0Jorge Aparicio
closes #32 closes #33