aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-06-18export: Update slic to edition 2024Oleksandr Babak
2025-06-18Update rtic/CHANGELOG.mdOleksandr Babak
2025-06-18fix: migrate to 2024 edition and fmtOleksandr Babak
2025-06-18feat: add ui testOleksandr Babak
2025-06-18fix: bump edition. it should cause a ci errorOleksandr Babak
2025-06-18Update rtic-macros/CHANGELOG.mdOleksandr Babak
2025-06-18fix: in edition 2024 `link_section` is used as `unsafe(link_section = ...)`Oleksandr Babak
2025-06-15Update imxrt-ral requirement from 0.5.3 to 0.6.1dependabot[bot]
Updates the requirements on [imxrt-ral](https://github.com/imxrt-rs/imxrt-ral) to permit the latest version. - [Release notes](https://github.com/imxrt-rs/imxrt-ral/releases) - [Changelog](https://github.com/imxrt-rs/imxrt-ral/blob/master/CHANGELOG.md) - [Commits](https://github.com/imxrt-rs/imxrt-ral/compare/0.5.3...0.6.1) --- updated-dependencies: - dependency-name: imxrt-ral dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2025-06-15ci: QEMU: Custom QEMU only for ESP32Henrik Tjäder
2025-06-15ci: QEMU: If cache hit, do not download againHenrik Tjäder
2025-06-15ci: QEMU: Do not install regular QEMU, only ESP32Henrik Tjäder
2025-06-15ci: espflash: use install-actionHenrik Tjäder
Tries cargo-binstall, then if that fails compiles
2025-06-15ci: QEMU ESP32: Update espflash to 3.3.0Henrik Tjäder
Includes libudev feature to not need external dep
2025-06-15Add all the timers to the list in lib.rs.Jonathan 'theJPster' Pallant
2025-06-15Add details for all the other monotonic implementations.Jonathan 'theJPster' Pallant
2025-06-15More details about the arguments for the systick API.Jonathan 'theJPster' Pallant
2025-06-15chore: better safety commentOleksandr Babak
2025-06-15chore: changelogOleksandr Babak
2025-06-15feat(rtic-macros): expose task wakerOleksandr Babak
2025-06-15feat(executor): add standalone waker constructorOleksandr Babak
2025-06-15Improved example and comments for the systick! macro.Jonathan 'theJPster' Pallant
2025-06-15Updates to "Delay and TImeout using Monotonics"Jonathan 'theJPster' Pallant
Some inconsistencies in the text caused confusion on my first few read-throughs, so I've tried to add some clarity.
2025-06-15Correct timer type in "Delay and Timeout using Monotonics"Jonathan 'theJPster' Pallant
The example in `lm3s6965/examples/async-timeout.rs` uses `Mono` as the monotonic timer type, so it's confusing that the second example switches to using `Systick`.
2025-06-15book: view_code update for xtaskHenrik Tjäder
2025-06-15docs: Monotonics: Highlight rtic-time is usedHenrik Tjäder
2025-06-15docs: Monotonics crates: Fix old copy-pasteHenrik Tjäder
2025-06-15ci: Use xtask test --loom for rtic-syncHenrik Tjäder
2025-06-15xtask: Add --loom argument to testHenrik Tjäder
For now filter to only rtic-sync in ci subcommand
2025-06-15feat: example of wait-queueOleksandr Babak
2025-06-15chore: compile fail tests to assert that the future returned by `wait_until` ↵Oleksandr Babak
is *not* `Unpin`
2025-06-15feat: `wait_until` method for waker queueOleksandr Babak
2025-06-15feat: `OnDropWith` helperOleksandr Babak
2025-06-15chore: changelog entryOleksandr Babak
2025-06-15xtask: ci: Document in contributing instructionsHenrik Tjäder
2025-06-15xtask: rename variable cargologlevel to cargoargHenrik Tjäder
2025-06-15xtask: Cargo clippy lintsHenrik Tjäder
2025-06-15xtask: run: Use common BuildModeHenrik Tjäder
2025-06-15xtask: Add AllCi functionality: Run all xtaskHenrik Tjäder
2025-06-15xtask: AllCi --failearly optionHenrik Tjäder
2025-06-15xtask: Arg is not only used for cargo sizeHenrik Tjäder
2025-06-15xtask: cargo_format: grab check_only from structHenrik Tjäder
2025-06-15xtask: Add defaults for PackageOpt and FormatOptHenrik Tjäder
2025-06-15ci: Updated lm3s6965 Cargo.lockHenrik Tjäder
2025-06-15xtask: Add ci/AllCi commandHenrik Tjäder
2025-06-15xtask: Move info prints into runHenrik Tjäder
2025-06-15Add blocking version of `rtic_sync::arbiter::{i2c,spi}::ArbiterDevice`Emil Fresk
2025-06-08Release RTIC v2.1.3Emil Fresk
2025-06-08UI: Test for references passed to spawnHenrik Tjäder
Related to and using code from Issue1065 Issue1065: https://github.com/rtic-rs/rtic/issues/1065
2025-06-08Fix references allowed in `spawn`Emil Fresk
The futures passed to the executor were not bound to be 'static, which allowed task futures to reference data that's on the spawnee's stack. The executor now requires futures to be 'static.
2025-06-08CI: Update STDERR for newer RustHenrik Tjäder