| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-09-17 | CI: xtask: Resolve warning about mixed lifetimes | Henrik Tjäder | |
| 2025-06-15 | xtask: Add --loom argument to test | Henrik Tjäder | |
| For now filter to only rtic-sync in ci subcommand | |||
| 2025-06-15 | xtask: Cargo clippy lints | Henrik Tjäder | |
| 2025-01-24 | ATSAMD 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> | |||
| 2024-06-23 | xtasks: handle platform flagged as unused | Henrik Tjäder | |
| 2024-03-20 | RISC-V support over CLINT (#815) | Román Cárdenas Rodríguez | |
| * Rebase to master * using interrupt_mod * bug fixes * fix other backends * Add changelog * forgot about rtic-macros * backend-specific configuration * core peripherals optional over macro argument * pre_init_preprocessing binding * CI for RISC-V (WIP) * separation of concerns * add targets for RISC-V examples * remove qemu feature * prepare examples folder * move examples all together * move ci out of examples * minor changes * add cortex-m * new xtask: proof of concept * fix build.yml * feature typo * clean rtic examples * reproduce weird issue * remove unsafe code in user app * update dependencies * allow builds on riscv32imc * let's fix QEMU * Update .github/workflows/build.yml Co-authored-by: Henrik Tjäder <henrik@tjaders.com> * New build.rs * removing test features * adapt ui test to new version of clippy * add more examples to RISC-V backend * proper configuration of heapless for riscv32imc * opt-out examples for riscv32imc * point to new version of riscv-slic * adapt new macro bindings * adapt examples and CI to stable * fix cortex-m CI * Review --------- Co-authored-by: Henrik Tjäder <henrik@tjaders.com> | |||
| 2024-02-27 | Make RTIC 2 work on stable by using `main`'s stack as an allocator | Emil Fresk | |
| 2023-04-16 | Also allow denying for QEMU, and fix the link-arg problem caused by | datdenkikniet | |
| overriding RUSTFLAGS | |||
| 2023-04-16 | Also print extra env variables as cmd_str | datdenkikniet | |
| 2023-04-16 | Rename + better printout | datdenkikniet | |
| 2023-04-16 | Also always deny warnings for doc | datdenkikniet | |
| 2023-04-16 | Deny on warnings in xtasks | datdenkikniet | |
| 2023-04-16 | Unconditionally deny warnings for clippy | datdenkikniet | |
| 2023-04-16 | Move all run-related stuff into `run` | datdenkikniet | |
| 2023-04-16 | Rename cargo_commands -> run | datdenkikniet | |
| Rename command -> cargo_command | |||
