Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-03-01 | Add rtic-timer (timerqueue + monotonic) and rtic-monotonics (systick-monotonic) | 1 | -7/+0 | ||
2021-03-03 | Update the tests file to find the tests | 1 | -1/+1 | ||
2021-03-03 | Remove keyword single for all tests | 1 | -0/+0 | ||
2019-11-06 | CI: replace compiletest-rs with trybuild | 1 | -15/+3 | ||
We use compiletest to run compile-fail tests but compiletest depends on compiler internals so it breaks every now and then and requires nightly. With trybuild we can also run compile-fail tests but it works on stable and it already has reached version 1.0 | |||||
2019-08-21 | drop the "multi" test | 1 | -16/+0 | ||
2019-08-20 | adapt to changes in rtfm-syntax | 1 | -2/+4 | ||
2019-06-13 | rtfm-syntax refactor + heterogeneous multi-core support | 50 | -1284/+33 | ||
2019-05-21 | remove unused check | 2 | -0/+32 | ||
that was added in #140 but it's no longer required | |||||
2019-05-01 | test RFC 147 | 5 | -0/+93 | ||
2019-05-01 | update compile-fail tests | 35 | -179/+95 | ||
2019-05-01 | update compile-pass tests | 10 | -212/+107 | ||
2019-04-16 | check task priority at compile time | 2 | -0/+44 | ||
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 | fix warnings in cpass test | 1 | -0/+2 | ||
2019-02-26 | make cfail test actually fail | 1 | -2/+2 | ||
2019-02-26 | add some tests | 2 | -0/+46 | ||
2019-02-23 | reject duplicate arguments in #[interrupt] and #[exception] | 2 | -0/+48 | ||
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-16 | cargo fmt | 1 | -12/+10 | ||
2019-02-12 | update examples and tests | 7 | -10/+15 | ||
2019-02-12 | forbid early returns in init | 2 | -0/+61 | ||
2018-12-16 | properly handle `#[cfg]` (conditional compilation) on tasks | 1 | -2/+6 | ||
2018-12-16 | properly handle #[cfg] (conditional compilation) on resources | 3 | -0/+170 | ||
2018-12-15 | remove no longer necessary feature gates | 8 | -8/+0 | ||
2018-11-04 | fix codegen | 2 | -11/+11 | ||
2018-11-03 | v0.4.0 | 54 | -659/+978 | ||
closes #32 closes #33 | |||||
2018-08-24 | more fixes | 18 | -24/+8 | ||
2018-04-16 | cargo fmt | 1 | -3/+2 | ||
2018-04-16 | update parser | 6 | -7/+7 | ||
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 | 2 | -0/+67 | ||
2017-12-09 | implement the Resource trait for owned resources | 2 | -10/+12 | ||
this unbreaks the "generics" example | |||||
2017-12-09 | make resource proxies not Sync | 1 | -1/+2 | ||
2017-12-09 | deny warnings and unsafe code in tests and examples | 16 | -0/+16 | ||
2017-12-09 | make resource proxies !Send | 1 | -0/+52 | ||
2017-12-09 | rename LateResourceValues to LateResources | 1 | -2/+2 | ||
2017-12-08 | fix cfail tests | 1 | -1/+1 | ||
2017-11-22 | fix ci | 2 | -2/+0 | ||
2017-09-22 | Add cfail test for late resources | 1 | -0/+49 | ||
2017-09-22 | Fix warning in wrong-threshold cfail test | 1 | -2/+1 | ||
2017-09-22 | Don't use deprecated method to create compiletest config | 1 | -1/+2 | ||
2017-07-27 | `Send`-ness check is now in rtfm-core | 2 | -3/+10 | ||
2017-07-27 | make task.$T.enabled optional | 8 | -18/+6 | ||
and move the logic that differentiates interrupts from exceptions from the crate to the procedural macro logic | |||||
2017-07-27 | update tests and examples | 10 | -166/+27 | ||
with task! gone 3 types of errors / gotchas have been eliminated :tada: | |||||
2017-07-24 | add another duplicated-handler cfail test | 1 | -0/+40 | ||
2017-07-23 | add cfail test: borrow can't escape critical sections | 1 | -0/+50 | ||
2017-07-23 | update cfail tests | 16 | -17/+37 | ||
2017-07-20 | more cfail tests | 2 | -0/+51 | ||
2017-07-18 | tasks / idle have exclusive access to Threshold, but do not own the token | 8 | -11/+55 | ||
2017-07-18 | add cfail tests | 13 | -0/+430 | ||
2017-07-04 | rtfm! macro take 2 | 17 | -1169/+0 | ||
2017-05-08 | require Resource protected data to be Send, make tokens !Send | 1 | -0/+159 | ||
2017-05-08 | replace the ceiling token with a preemption threshold token | 15 | -97/+115 | ||