| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-02-26 | refactor: make `binds` harder to misuse | Jorge Aparicio | |
| 2019-02-26 | make cfail test actually fail | Jorge Aparicio | |
| 2019-02-16 | cargo fmt | Jorge Aparicio | |
| 2019-02-12 | accept `init: fn() -> init::LateResources` | Jorge Aparicio | |
| 2019-02-12 | forbid early returns in init | Jorge Aparicio | |
| 2018-12-16 | move macros crate to the 2018 edition | Jorge Aparicio | |
| 2018-12-16 | properly handle `#[cfg]` (conditional compilation) on tasks | Jorge Aparicio | |
| 2018-11-03 | v0.4.0 | Jorge Aparicio | |
| closes #32 closes #33 | |||
| 2018-06-07 | Fix "Could not find `Op` in `proc_macro`" | Ferdia McKeogh | |
| 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. | |||
| 2017-12-09 | safe `&'static mut` references via init.resources | Jorge Aparicio | |
| 2017-12-09 | peripherals as scoped singletons | Jorge Aparicio | |
| 2017-07-29 | update examples | Jorge Aparicio | |
| 2017-07-27 | make task.$T.path mandatory | Jorge Aparicio | |
| 2017-07-27 | make task.$T.enabled optional | Jorge Aparicio | |
| 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 | Jorge Aparicio | |
| default the value to 1 if omitted | |||
| 2017-07-24 | task! is not needed if tasks.$T.path is specified | Jorge Aparicio | |
| 2017-07-18 | adapt to changes in rtfm-syntax | 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-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 | |
