| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-01 | syntax: Remove parse settings struct | Emil Fresk | |
| 2023-03-01 | Add check again | Emil Fresk | |
| 2023-03-01 | RTIC v2: Initial commit | Emil Fresk | |
| rtic-syntax is now part of RTIC repository | |||
| 2022-02-22 | Clippy with pedantic suggestions | Henrik Tjäder | |
| 2022-01-28 | RTIC macro expansion: Try to find target-dir | Henrik Tjäder | |
| 2021-11-25 | Remove #[deny(warnings)], but deny warnings for CI | Henrik Tjäder | |
| 2021-11-25 | Docs: add RTIC logo | Henrik Tjäder | |
| 2021-03-04 | Preparing release 0.6.0-alpha.1 | Emil Fresk | |
| 2020-12-03 | Save, init generation fixed | Emil Fresk | |
| 2020-11-19 | Fix the link | Henrik Tjäder | |
| 2020-11-19 | Remove stale documentation, refer to the book | Henrik Tjäder | |
| 2020-10-11 | Now with spawn/schedule from anywhere | Emil Fresk | |
| 2020-10-05 | Added back accidentally removed block | Emil Fresk | |
| 2020-09-29 | Keep user code as-is within the module, add example | Henrik Tjäder | |
| 2020-09-25 | Update documentation where const is replaced by mod | Henrik Tjäder | |
| 2020-09-01 | Brutally yank out multicore | Henrik Tjäder | |
| 2020-06-11 | Rename RTFM to RTIC | Henrik Tjäder | |
| 2019-09-15 | fix gh-pages build | Jorge Aparicio | |
| 2019-08-21 | doc tweaks | Jorge Aparicio | |
| 2019-08-21 | document #[app] | Jorge Aparicio | |
| 2019-08-20 | adapt to changes in rtfm-syntax | Jorge Aparicio | |
| 2019-06-20 | RFC #207 | Jorge Aparicio | |
| 2019-06-18 | add homogeneous multi-core support | Jorge Aparicio | |
| 2019-06-13 | rtfm-syntax refactor + heterogeneous multi-core support | Jorge Aparicio | |
| 2019-05-08 | write generated code to disk for easier inspection | Jorge Aparicio | |
| now that the generated code is actually readable let's make it easier to access this commit also documents how to inspect the generated code via `rtfm-expansion.rs` and `cargo-expand` | |||
| 2019-05-01 | implement RFCs 147 and 155, etc. | Jorge Aparicio | |
| 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`. | |||
| 2018-12-16 | move macros crate to the 2018 edition | Jorge Aparicio | |
| 2018-12-16 | properly handle #[cfg] (conditional compilation) on resources | Jorge Aparicio | |
| 2018-11-03 | v0.4.0 | Jorge Aparicio | |
| closes #32 closes #33 | |||
| 2018-08-24 | more fixes | Jorge Aparicio | |
| 2018-04-16 | update parser | Jorge Aparicio | |
| 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. | |||
| 2018-01-15 | v0.3.0 | Jorge Aparicio | |
| 2017-11-22 | v0.2.2 | Jorge Aparicio | |
| 2017-07-29 | v0.2.0 | Jorge Aparicio | |
| 2017-07-29 | update examples | Jorge Aparicio | |
| 2017-07-20 | doc tweaks | Jorge Aparicio | |
| 2017-07-14 | rename rtfm! to app! and adapt to changes in rtfm-syntax | Jorge Aparicio | |
| 2017-07-14 | split macro parser into its own crate and improve error handling / reporting | Jorge Aparicio | |
| 2017-07-11 | compiler plugin -> proc macro | Jorge Aparicio | |
| 2017-07-06 | syntax tweaks, relax check, add set_pending(), deal with imported types | Jorge Aparicio | |
| - 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 | Jorge Aparicio | |
