Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-11-22 | v0.2.2v0.2.2 | 1 | -41/+37 | ||
2017-10-02 | fix `idle::Resources::new` | 1 | -2/+8 | ||
it assumed that all resources were "early" resources | |||||
2017-09-22 | Fix shared resource handling and extend example. | 1 | -4/+9 | ||
The extended example tests that this actually works this time. | |||||
2017-09-22 | Simplify iterator usage | 1 | -17/+10 | ||
2017-09-06 | Use `untagged_option` crate | 1 | -3/+3 | ||
2017-09-03 | Allow initialization of resources in `init`. | 1 | -24/+81 | ||
2017-07-29 | v0.2.0v0.2.0 | 1 | -1/+1 | ||
2017-07-29 | update examplesrelease/v0.1 | 2 | -4/+144 | ||
2017-07-27 | `Send`-ness check is now in rtfm-core | 1 | -20/+0 | ||
2017-07-27 | make task.$T.path mandatory | 2 | -56/+30 | ||
2017-07-27 | make task.$T.enabled optional | 2 | -40/+102 | ||
and move the logic that differentiates interrupts from exceptions from the crate to the procedural macro logic | |||||
2017-07-27 | don't generate empty modules | 1 | -11/+16 | ||
2017-07-27 | make task.$T.priority optional | 1 | -20/+8 | ||
default the value to 1 if omitted | |||||
2017-07-27 | refactor Resource / Threshold into its own crate, drop task!, tweak rtfm::atomic | 1 | -9/+23 | ||
task! can be re-added in a backward compatible fashion and I'd like to not have two ways to assign a task handler to an interrupt / exception in the first release. rtfm::atomic now uses the `Threshold` token instead of the `CriticalSection` token. This reduces overhead by dropping the "are interrupts enabled?" check. | |||||
2017-07-26 | provide a Threshold token even when all resources are lockless | 1 | -7/+5 | ||
because the token will always be required for calling generic functions | |||||
2017-07-26 | fix around owned idle resource | 1 | -1/+5 | ||
2017-07-25 | fix errors around the use of `super` in relative paths | 1 | -4/+4 | ||
2017-07-24 | more "hygiene" | 1 | -8/+12 | ||
prepend an underscore to the name of the statics generated in the root of the crate | |||||
2017-07-24 | task! is not needed if tasks.$T.path is specified | 2 | -54/+116 | ||
2017-07-23 | don't wrap static references in a `Static` | 1 | -9/+4 | ||
2017-07-23 | drop rtfm::Cell | 1 | -21/+33 | ||
2017-07-23 | drop idle.locals | 1 | -43/+6 | ||
2017-07-20 | misc fixes | 1 | -7/+7 | ||
2017-07-20 | doc tweaks | 1 | -0/+5 | ||
2017-07-20 | `Resource` trait, docs, examples and rtfm-syntax related changes | 1 | -37/+84 | ||
2017-07-18 | make compatible with the unsafe_code lint | 1 | -0/+10 | ||
2017-07-18 | tasks / idle have exclusive access to Threshold, but do not own the token | 1 | -2/+2 | ||
2017-07-18 | resources owned by idle have 'static lifetime | 1 | -10/+6 | ||
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 | 3 | -27/+26 | ||
2017-07-14 | split macro parser into its own crate and improve error handling / reporting | 8 | -889/+408 | ||
2017-07-11 | compiler plugin -> proc macro | 2 | -45/+7 | ||
2017-07-09 | make the init::Resources argument optional | 1 | -23/+40 | ||
2017-07-08 | make the tasks and resources fields optional | 1 | -2/+2 | ||
2017-07-08 | fix unused variable warning around interrupt::free | 1 | -3/+3 | ||
2017-07-06 | syntax tweaks, relax check, add set_pending(), deal with imported types | 6 | -54/+146 | ||
- 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-06 | rtfm!: remove init.resources and make idle.local optional | 3 | -43/+56 | ||
2017-07-04 | rtfm! macro take 2 | 6 | -0/+1162 | ||