Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-02-16 | make debug builds reproducible | 1 | -101/+132 | ||
2019-02-16 | Make generated names stable when sorting. | 1 | -7/+28 | ||
2019-02-16 | Seed RNG with package name and prepend string to full random name. | 1 | -2/+8 | ||
2019-02-16 | Make identifiers deterministic. | 1 | -64/+54 | ||
2019-02-16 | Make builds reproducible | 3 | -27/+27 | ||
This is done by using `BTreeMap`s and `BTreeSet`s to get deterministic ordering. Also updated the CI job to check reproducibility of all examples. | |||||
2019-02-13 | fix non_camel_case_types warnings | 1 | -0/+1 | ||
2019-02-12 | accept `init: fn() -> init::LateResources` | 3 | -35/+175 | ||
2019-02-12 | forbid early returns in init | 1 | -1/+246 | ||
2019-01-17 | Fix build on recent nightlies. | 1 | -0/+1 | ||
2018-12-16 | move macros crate to the 2018 edition | 5 | -22/+20 | ||
2018-12-16 | properly handle `#[cfg]` (conditional compilation) on tasks | 3 | -18/+66 | ||
2018-12-16 | properly handle #[cfg] (conditional compilation) on resources | 3 | -66/+182 | ||
2018-12-16 | use the single core variant of spsc::Queue | 1 | -2/+2 | ||
2018-12-15 | codegen/statics: forward #[cfg] attributes | 2 | -1/+25 | ||
fixes #110 | |||||
2018-12-15 | move some interrupt configuration to pre_init | 1 | -22/+26 | ||
2018-12-15 | codegen: merge dictionaries related to task dispatchers | 1 | -14/+23 | ||
2018-12-15 | codegen: merge dictionaries related to tasks | 1 | -94/+106 | ||
2018-12-02 | codegen: stop using `export_name` | 1 | -52/+58 | ||
`export_name` creates external symbols that won't be removed when using `-Z emit-stack-sizes` | |||||
2018-11-04 | fix codegen | 1 | -7/+15 | ||
2018-11-04 | impl Mutex on all shared resources | 2 | -30/+74 | ||
document how to write generic code that operates on resources | |||||
2018-11-03 | v0.4.0 | 6 | -880/+3612 | ||
closes #32 closes #33 | |||||
2018-08-24 | more fixes | 2 | -3/+2 | ||
2018-06-07 | Fix "Could not find `Op` in `proc_macro`" | 2 | -18/+17 | ||
2018-04-16 | update parser | 4 | -116/+44 | ||
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 | 1 | -7/+15 | ||
2018-01-11 | adapt to changes in the cortex-m crate | 1 | -2/+2 | ||
2017-12-17 | add missing comma | 1 | -1/+1 | ||
2017-12-09 | safe `&'static mut` references via init.resources | 2 | -9/+52 | ||
2017-12-09 | implement the Resource trait for owned resources | 2 | -202/+209 | ||
this unbreaks the "generics" example | |||||
2017-12-09 | drop the Static wrapper | 1 | -13/+13 | ||
2017-12-09 | make resource proxies not Sync | 1 | -2/+0 | ||
2017-12-09 | make resource proxies !Send | 1 | -2/+6 | ||
2017-12-09 | rename LateResourceValues to LateResources | 1 | -3/+3 | ||
2017-12-09 | remove special case around peripherals from codegen | 1 | -209/+114 | ||
2017-12-09 | peripherals as scoped singletons | 2 | -9/+27 | ||
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 |