Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-03-01 | Add rtic-timer (timerqueue + monotonic) and rtic-monotonics (systick-monotonic) | 1 | -70/+0 | ||
2023-03-01 | Clippy fixes | 1 | -2/+1 | ||
2023-03-01 | Support 0 prio tasks | 1 | -0/+1 | ||
2023-03-01 | Add check again | 1 | -22/+6 | ||
2022-12-15 | Clippy: Fix (clippy::needless_borrow) | 1 | -1/+1 | ||
2020-12-08 | TQ handlers being generated | 1 | -2/+0 | ||
2020-12-03 | Save, init generation fixed | 1 | -13/+1 | ||
2020-10-23 | move dispatchers to app argument | 1 | -67/+12 | ||
2020-10-15 | Implement all clippy suggestions | 1 | -3/+3 | ||
2020-10-11 | Now with spawn/schedule from anywhere | 1 | -35/+27 | ||
2020-09-01 | Remove stale code, fix comment styling | 1 | -29/+4 | ||
2020-09-01 | Cargo fmt | 1 | -12/+5 | ||
2020-09-01 | Brutally yank out multicore | 1 | -72/+42 | ||
2020-06-11 | Rename RTFM to RTIC | 1 | -3/+3 | ||
2019-08-20 | adapt to changes in rtfm-syntax | 1 | -3/+4 | ||
2019-06-20 | RFC #207 | 1 | -13/+6 | ||
2019-06-18 | add homogeneous multi-core support | 1 | -0/+22 | ||
2019-06-13 | rtfm-syntax refactor + heterogeneous multi-core support | 1 | -100/+187 | ||
2019-05-21 | remove unused check | 1 | -260/+17 | ||
that was added in #140 but it's no longer required | |||||
2019-05-01 | rtfm::app: update error message | 1 | -1/+1 | ||
2019-05-01 | implement RFCs 147 and 155, etc. | 1 | -15/+6 | ||
This commit: - Implements RFC 147: "all functions must be safe" - Implements RFC 155: "explicit Context parameter" - Implements the pending breaking change #141: reject assign syntax in `init` (which was used to initialize late resources) - Refactors code generation to make it more readable -- there are no more random identifiers in the output -- and align it with the book description of RTFM internals. - Makes the framework hard depend on `core::mem::MaybeUninit` and thus will require nightly until that API is stabilized. - Fixes a ceiling analysis bug where the priority of the system timer was not considered in the analysis. - Shrinks the size of all the internal queues by turning `AtomicUsize` indices into `AtomicU8`s. - Removes the integration with `owned_singleton`. | |||||
2019-02-26 | refactor: make `binds` harder to misuse | 1 | -6/+2 | ||
2019-02-26 | make cfail test actually fail | 1 | -3/+9 | ||
2019-02-16 | cargo fmt | 1 | -4/+4 | ||
2019-02-12 | accept `init: fn() -> init::LateResources` | 1 | -14/+25 | ||
2019-02-12 | forbid early returns in init | 1 | -1/+246 | ||
2018-12-16 | move macros crate to the 2018 edition | 1 | -3/+3 | ||
2018-12-16 | properly handle `#[cfg]` (conditional compilation) on tasks | 1 | -1/+2 | ||
2018-11-03 | v0.4.0 | 1 | -81/+101 | ||
closes #32 closes #33 | |||||
2018-06-07 | Fix "Could not find `Op` in `proc_macro`" | 1 | -1/+1 | ||
2018-04-16 | update parser | 1 | -83/+8 | ||
closes #69 this doesn't change functionality per se but improves diagnostics in some cases. Some hard errors have becomes warnings, for example: when `resources` is empty, or when `idle.path` is set to the default `idle` path. | |||||
2017-12-09 | safe `&'static mut` references via init.resources | 1 | -0/+31 | ||
2017-12-09 | peripherals as scoped singletons | 1 | -4/+14 | ||
2017-07-29 | update examplesrelease/v0.1 | 1 | -2/+2 | ||
2017-07-27 | make task.$T.path mandatory | 1 | -2/+2 | ||
2017-07-27 | make task.$T.enabled optional | 1 | -7/+66 | ||
and move the logic that differentiates interrupts from exceptions from the crate to the procedural macro logic | |||||
2017-07-27 | make task.$T.priority optional | 1 | -20/+8 | ||
default the value to 1 if omitted | |||||
2017-07-24 | task! is not needed if tasks.$T.path is specified | 1 | -0/+2 | ||
2017-07-18 | adapt to changes in rtfm-syntax | 1 | -3/+2 | ||
2017-07-14 | rename rtfm! to app! and adapt to changes in rtfm-syntax | 1 | -17/+19 | ||
2017-07-14 | split macro parser into its own crate and improve error handling / reporting | 1 | -9/+76 | ||
2017-07-06 | syntax tweaks, relax check, add set_pending(), deal with imported types | 1 | -13/+8 | ||
- allow trailing commas in list of resources - make task.resources optional - add rtfm::set_pending function which can be used to force an interrupt into the pending state. This is a replacement of the old rtfm::request. rtfm::set_pending takes the Interrupt enum provided by the device crate as argument. (The old rtfm::request took a task function as argument) - the user may want to use types they imported into the root of the crate. These types are not available in e.g. `mod idle` so `idle::Resources` *can't* be defined in that module. To workaround this problem `idle::Resources` will be defined in the root, with some other name, and then be re-exported in the `idle` module. - remove the "a resource only used by one task should be local data" check. In some cases you do want a resource owned by a single task instead of local data since `init` can access resources but not a task local data. | |||||
2017-07-04 | rtfm! macro take 2 | 1 | -0/+17 | ||