aboutsummaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2023-04-16examples: pin to specific versiondatdenkikniet
2023-04-16examples: commit Cargo.lock filesdatdenkikniet
2023-04-16stm32f3_blinky: update to latest versiondatdenkikniet
2023-04-16rp2040_local_i2c_init: update to latest versiondatdenkikniet
2023-04-16Split remove old examplesdatdenkikniet
2023-03-01Add rtic-timer (timerqueue + monotonic) and rtic-monotonics (systick-monotonic)Emil Fresk
2023-03-01Fix so deny(missing_docs) workEmil Fresk
2023-03-01Async tasks can now take arguments at spawn againEmil Fresk
2023-03-01Support 0 prio tasksEmil Fresk
2023-03-01All examples pass with `cargo xtask --target all`Emil Fresk
2023-03-01Update semihostingEmil Fresk
2023-03-01Fix typosEmil Fresk
2023-03-01more examplesPer Lindgren
2023-03-01examples/multiloc fixedPer Lindgren
2023-03-01examples/lock fixedPer Lindgren
2023-03-01examples/locals fixedPer Lindgren
2023-03-01examples/idle-wfi fixedPer Lindgren
2023-03-01export Cell removed, expmples updatedPer Lindgren
2023-03-01examples/async-task fixupPer Lindgren
2023-03-01Lifetime cleanupEmil Fresk
2023-03-01Removed Priority, simplified lifetime handlingEmil Fresk
2023-03-01First example builds againEmil Fresk
2023-03-01Old xtask test passEmil Fresk
2023-02-26example: pool: Do not print the addrHenrik Tjäder
Unstable and prone to fail CI
2023-01-22Handle more cfgs, support cfg on HW/SW tasksHenrik Tjäder
2023-01-22Add example cfg-ing a Monotonic, showing limitations imposed by rtic-syntaxHenrik Tjäder
2023-01-22Heapless 0.7.16 pool!() generates undocumented structHenrik Tjäder
2023-01-21Deny missing_docs for all examplesHenrik Tjäder
2023-01-14Upgrade of semihosting changed timingHenrik Tjäder
New semihosting 0.5 does not use error handling, returns directly and as semihosting is generally slow this led to missing print statements. Workaround is to add NOP, which seems sufficient to let it flush the buffers
2023-01-11Missed hprintln with multilineHenrik Tjäder
2023-01-11Remove ok() from hprintln!()Henrik Tjäder
sd 'hprintln(.*).ok\(\)' 'hprintln' (fd -e rs .)
2023-01-11Remove unwrap() from hprintln!()Henrik Tjäder
sd 'hprintln(.*).unwrap\(\)' 'hprintln' (fd -e rs .)
2022-09-28Fix new lint in the compilerEmil Fresk
2022-03-02Added support for SRP based scheduling for armv6mPer Lindgren
2022-01-08Fix the locals.rs commentJakub Młynarczyk
I believe that is a typo s/shared/local_to_bar
2022-01-04Drift free timing examplesPer Lindgren
2021-12-26Improved docs on where the 12 MHz comes from in SysTickEmil Fresk
2021-12-14Idle: Switch to NOP instead of WFIHenrik Tjäder
Add example how to get old WFI behaviour
2021-11-09New monotonic trait workingEmil Fresk
2021-11-03Fix CIEmil Fresk
2021-10-13remove outdated commentPer Lindgren
2021-09-23The great docs updateEmil Fresk
2021-07-22book/resources: rm #[task_local] mention; add #[lock_free] exampleJorge Aparicio
the #[task_local] attribute was removed
2021-07-22comment out line that doesn't compileJorge Aparicio
2021-07-21book/resources: remove mentions of the field attribute #[init(<expr>)]Jorge Aparicio
it no longer exists. all resources are now late resources
2021-07-21book/resources: do not use the lock API in the very first exampleJorge Aparicio
instead stick to `#[local]` resources
2021-07-21use tuple struct syntax for Monotonics everywhereJorge Aparicio
2021-07-20rustfmtAndrey Zgarbul
2021-07-20fix pool examplemriise
2021-07-09const genericsAndrey Zgarbul