Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-21 | v0.4.3 | 1 | -4/+14 | ||
2019-04-16 | Merge #170 | 2 | -6/+4 | ||
170: check task priority at compile time r=TeXitoi a=japaric before we were checking the priority at runtime. The compile time error message when the priority is too high is kind of awful though. Co-authored-by: Jorge Aparicio <jorge@japaric.io> | |||||
2019-04-17 | now fix the fix | 1 | -2/+2 | ||
2019-04-16 | more nightly fixes | 1 | -11/+11 | ||
2019-04-16 | [NFC] fix nightly ci | 1 | -7/+7 | ||
2019-04-16 | check task priority at compile time | 2 | -6/+4 | ||
before we were checking the priority at runtime. The compile time error message when the priority is too high is kind of awful though. | |||||
2019-02-26 | refactor: make `binds` harder to misuse | 3 | -21/+16 | ||
2019-02-26 | `binds` can only appear once in the argument list | 1 | -0/+7 | ||
2019-02-26 | add `binds` example and make it work | 1 | -2/+2 | ||
2019-02-26 | make cfail test actually fail | 1 | -3/+9 | ||
2019-02-26 | add `binds` argument to the `interrupt` and `exception` attributes | 2 | -30/+85 | ||
2019-02-23 | reject duplicate arguments in #[interrupt] and #[exception] | 1 | -0/+14 | ||
This program was being accepted: ``` rust #[task( capacity = 1, capacity = 2, priority = 1, priority = 2, )] fn foo() {} ``` now it will trigger a compiler error | |||||
2019-02-19 | add "nightly" feature | 1 | -80/+181 | ||
2019-02-16 | rebase fix | 1 | -1/+1 | ||
2019-02-16 | cargo fmt | 1 | -4/+4 | ||
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 | ||