Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-20 | `Resource` trait, docs, examples and rtfm-syntax related changes | 22 | -171/+1482 | ||
2017-07-20 | more cfail tests | 2 | -0/+51 | ||
2017-07-20 | bump cortex-m version to v0.3.1 | 2 | -10/+1 | ||
barrier! is no longer needed | |||||
2017-07-18 | make compatible with the unsafe_code lint | 2 | -0/+12 | ||
2017-07-18 | tasks / idle have exclusive access to Threshold, but do not own the token | 10 | -17/+61 | ||
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-18 | add cfail tests | 14 | -2/+438 | ||
2017-07-14 | rename rtfm! to app! and adapt to changes in rtfm-syntax | 4 | -28/+27 | ||
2017-07-14 | split macro parser into its own crate and improve error handling / reporting | 10 | -890/+440 | ||
2017-07-11 | compiler plugin -> proc macro | 5 | -46/+12 | ||
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-08 | rename rtfm-macros to cortex-m-rtfm-macros | 1 | -1/+1 | ||
2017-07-06 | syntax tweaks, relax check, add set_pending(), deal with imported types | 7 | -54/+157 | ||
- 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 | 27 | -2218/+1348 | ||
2017-06-05 | v0.1.1v0.1.1 | 2 | -2/+9 | ||
2017-06-05 | fix unused macro error | 1 | -0/+1 | ||
2017-05-25 | make the register_block field optional in the peripherals! macro | 1 | -0/+16 | ||
with svd2rust 0.8.x peripheral types are written in UPPERCASE and match their names so specifying the type in the register_block field is no longer necessary. | |||||
2017-05-15 | fix links in the references section | 1 | -4/+4 | ||
2017-05-09 | v0.1.0v0.1.0 | 4 | -5/+20 | ||
2017-05-08 | drop the Ceiling newtype | 2 | -14/+7 | ||
it's not required as the user never deal with Ceiling tokens | |||||
2017-05-08 | require Resource protected data to be Send, make tokens !Send | 2 | -1/+171 | ||
2017-05-08 | replace the ceiling token with a preemption threshold token | 18 | -216/+260 | ||
2017-04-28 | update examples | 2 | -27/+17 | ||
2017-04-27 | make the ceiling part of the task signature | 14 | -80/+325 | ||
remove the P.as_ceiling method | |||||
2017-04-27 | make `as_ceiling` a general method of `P<N>` | 2 | -11/+10 | ||
2017-04-27 | add crates.io badges | 1 | -0/+3 | ||
2017-04-27 | add categories | 2 | -10/+19 | ||
2017-04-26 | tweak attribution | 1 | -3/+4 | ||
2017-04-25 | fix cfail tests | 2 | -2/+2 | ||
2017-04-25 | rename `rtfm::critical` to `rtfm::atomic`, touch up the documentation | 1 | -43/+91 | ||
2017-04-25 | hide the unsafe Peripheral::new constructor | 1 | -18/+85 | ||
`peripherals!` is the safe way to declare `Peripheral`s | |||||
2017-04-25 | ignore no_mangle related warning | 1 | -0/+1 | ||
2017-04-25 | add a `peripherals!` macro | 3 | -0/+160 | ||
for safe declaration of `Peripheral`s closes #12 | |||||
2017-04-25 | fix build for thumbv6m | 1 | -0/+1 | ||
2017-04-25 | update examples in doc comments | 1 | -7/+27 | ||
2017-04-25 | change tasks! syntax to resemble struct initialization | 7 | -8/+40 | ||
2017-04-25 | update examples | 1 | -42/+43 | ||
2017-04-21 | update the examples in the crate documentation | 1 | -35/+38 | ||
2017-04-21 | add `enable` / `disable` functions, add $enabled parameter to tasks! | 1 | -34/+65 | ||
2017-04-21 | rename `borrow` to `access` | 7 | -82/+83 | ||
2017-04-21 | add `borrow_mut` to Local | 1 | -0/+8 | ||
2017-04-21 | reword the comments in compile-fail tests | 11 | -73/+129 | ||
2017-04-21 | raise_to -> Ceiling.raise | 6 | -34/+31 | ||
2017-04-21 | drop `lock` methods, add `raise_to` function | 6 | -90/+96 | ||
2017-04-21 | rename "system ceiling" to "current ceiling" | 1 | -3/+3 | ||
2017-04-21 | more docs, remove Ceiling / Priority / Level traits | 15 | -170/+578 | ||