aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-03-24rtic-sync: introduce loom compat layer and apply it to `channel`datdenkikniet
2025-03-23rtic-sync: update CHANGELOG.mddatdenkikniet
2025-03-23rtic-sync: we have exclusive access to the free slot pointer when in `drop`datdenkikniet
2025-03-23rtic-sync: `take` link if it is poppeddatdenkikniet
2025-03-23rtic: placate clippy for esp32c3datdenkikniet
2025-03-23ci: use reusable workflowdatdenkikniet
2025-03-23ci: some nicer messagesdatdenkikniet
2025-03-23ci: riscv check examples does not need nightly toolchaindatdenkikniet
2025-03-23ci: fix QEMU tests for esp32datdenkikniet
2025-03-23ci: Check at least one C3 targetdatdenkikniet
2025-03-23ci: check for hifive1 is now also supporteddatdenkikniet
2025-03-23ci & xtask: support hifive clippydatdenkikniet
2025-03-23ci: check can use the same templatedatdenkikniet
2025-03-23ci: clippy can use the same templatedatdenkikniet
2025-03-23ci: testexamples can use the same templatedatdenkikniet
2025-03-23ci: checkexamples can use the same templatedatdenkikniet
2025-03-16rtic-sync: update changelogCyril Marpaud
2025-03-16rtic-sync(docs): harmonize make_signal and make_channel macrosCyril Marpaud
2025-03-16rtic-sync: don't force Signal import on make_signal!() useCyril Marpaud
2025-03-16rtic-sync: Release v1.3.2Emil Fresk
2025-03-16rtic-sync: always wake `wait_queue` when attempting to return an itemdatdenkikniet
to freeq
2025-03-16rtic-sync: add test validating that free queue slots are not lost on dropdatdenkikniet
2025-03-16rtic-sync: add explicit check for being closeddatdenkikniet
2025-03-16rtic-sync: improve commentsdatdenkikniet
2025-03-16rtic-sync: Channel: Sender: rewriter `send` logic to be easier to validatedatdenkikniet
2025-03-16Blahdatdenkikniet
2025-03-16rtic-sync: update README.mddatdenkikniet
2025-03-16rtic-sync: improve safety commentsdatdenkikniet
2025-03-16rtic-sync: replacing SlotPtr is not actually safedatdenkikniet
2025-03-16rtic-sync: explicitly send an awoken Sender the slot it can usedatdenkikniet
2025-03-12Book: Fix #1024 async closures stable since 1.85Henrik Tjäder
2025-03-12RTIC: Changelog newlineHenrik Tjäder
2025-03-12Book: Change chapter title to not be ARM specificHenrik Tjäder
2025-03-12Adding docs about RISC-VRomán Cárdenas Rodríguez
2025-03-12Configure CI for new backendsRomán Cárdenas Rodríguez
2025-03-12Add mecall backendRomán Cárdenas Rodríguez
2025-03-12Prepare for new riscv ecosystemRomán Cárdenas Rodríguez
2025-03-12rtic-sync: release 1.3.1Emil Fresk
2025-03-12Update CHANGELOG.mddatdenkikniet
2025-03-12Fix #780datdenkikniet
2025-03-12docs: fix minor typos in book prefaceJoël Bourgault
2025-02-19Fix "the the" in commentRonald Weber
2025-02-09Update esp32-c3 and esp-hal crates (#1019)Ronald Weber
* Bump esp32-c3 to 0.27.0 * Update esp-hal to 0.23.1 * Add Changelog entry
2025-01-24ATSAMD RTC monotonic referral in documentation (#1014)Dan Whitman
* rtic-monotonics: Adds a section to the module documentation about ATSAMD chip monotonics provided in the `atsamd-hal` crate * rtic-monotonics: Adds a section to README listing the supported microcontroller platforms. * rtic-sync: Fix clippy complaints error: the following explicit lifetimes could be elided: 'a --> rtic-sync/src/signal.rs:113:6 | 113 | impl<'a, T: Copy> SignalReader<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 113 - impl<'a, T: Copy> SignalReader<'a, T> { 113 + impl<T: Copy> SignalReader<'_, T> { * xtask: Clippy fix warning warning: elided lifetime has a name --> xtask/src/cargo_command.rs:427:14 | 420 | fn build_args<'i, T: Iterator<Item = &'i str>>( | -- lifetime `'i` declared here ... 427 | ) -> Vec<&str> { | ^ this elided lifetime gets resolved as `'i` | = note: `#[warn(elided_named_lifetimes)]` on by default --------- Co-authored-by: Dan Whitman <daniel.whitman.2@us.af.mil> Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2025-01-22monotonics add readme (#1012)Henrik Tjäder
* rtic-monotonics: Add README * rtic-monotonics: Add links to changelog
2025-01-15rtic-monotonics: rp2040 extra parenthesis (#1010)Henrik Tjäder
2025-01-15Add blinky example for STM32F1 bluepill board (#1007)rnld wbr
Code taken from stm32f3_blinky example with LED port adapted to bluepill board. Port initialization and README from v1 rtic-examples with slight edits.
2024-12-06Add default docs feature to rtic-macrosEmil Fresk
2024-12-06Fix documentation (docs.rs) and release 2.1.2Emil Fresk
2024-11-27docs/changelog reorder (#1000)Henrik Tjäder
* rtic: Changelog reorder based on date * rtic: Changelog: Emphasis on stack-like operation