aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-03Allow initialization of resources in `init`.Jonas Schievink
2017-07-29extend v0.2.0 CHANGELOGJorge Aparicio
2017-07-29v0.2.1Jorge Aparicio
2017-07-29v0.2.0Jorge Aparicio
2017-07-29update examplesJorge Aparicio
2017-07-27update examplesJorge Aparicio
2017-07-27`Send`-ness check is now in rtfm-coreJorge Aparicio
2017-07-27make task.$T.path mandatoryJorge Aparicio
2017-07-27make task.$T.enabled optionalJorge Aparicio
and move the logic that differentiates interrupts from exceptions from the crate to the procedural macro logic
2017-07-27fix yet another warning on ARMv6-MJorge Aparicio
2017-07-27travis: install linkerJorge Aparicio
2017-07-27fix warning on ARMv6-MJorge Aparicio
2017-07-27don't generate empty modulesJorge Aparicio
2017-07-27make task.$T.priority optionalJorge Aparicio
default the value to 1 if omitted
2017-07-27update tests and examplesJorge Aparicio
with task! gone 3 types of errors / gotchas have been eliminated :tada:
2017-07-27refactor Resource / Threshold into its own crate, drop task!, tweak rtfm::atomicJorge Aparicio
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-26provide a Threshold token even when all resources are locklessJorge Aparicio
because the token will always be required for calling generic functions
2017-07-26fix around owned idle resourceJorge Aparicio
2017-07-25inline claimJorge Aparicio
because it's needed for proper optimization / inlining
2017-07-25fix errors around the use of `super` in relative pathsJorge Aparicio
2017-07-24more "hygiene"Jorge Aparicio
prepend an underscore to the name of the statics generated in the root of the crate
2017-07-24add another duplicated-handler cfail testJorge Aparicio
2017-07-24task! is not needed if tasks.$T.path is specifiedJorge Aparicio
2017-07-23document `task!` moreJorge Aparicio
2017-07-23add cfail test: borrow can't escape critical sectionsJorge Aparicio
2017-07-23bump the static-ref dependencyJorge Aparicio
2017-07-23don't wrap static references in a `Static`Jorge Aparicio
2017-07-23update cfail testsJorge Aparicio
2017-07-23update examplesJorge Aparicio
2017-07-23drop rtfm::CellJorge Aparicio
2017-07-23drop idle.localsJorge Aparicio
2017-07-23add example about placing init, idle and tasks in modulesJorge Aparicio
2017-07-20misc fixesJorge Aparicio
2017-07-20doc tweaksJorge Aparicio
2017-07-20update CIJorge Aparicio
2017-07-20`Resource` trait, docs, examples and rtfm-syntax related changesJorge Aparicio
2017-07-20more cfail testsJorge Aparicio
2017-07-20bump cortex-m version to v0.3.1Jorge Aparicio
barrier! is no longer needed
2017-07-18make compatible with the unsafe_code lintJorge Aparicio
2017-07-18tasks / idle have exclusive access to Threshold, but do not own the tokenJorge Aparicio
2017-07-18resources owned by idle have 'static lifetimeJorge Aparicio
2017-07-18adapt to changes in rtfm-syntaxJorge Aparicio
2017-07-18add cfail testsJorge Aparicio
2017-07-14rename rtfm! to app! and adapt to changes in rtfm-syntaxJorge Aparicio
2017-07-14split macro parser into its own crate and improve error handling / reportingJorge Aparicio
2017-07-11compiler plugin -> proc macroJorge Aparicio
2017-07-09make the init::Resources argument optionalJorge Aparicio
2017-07-08make the tasks and resources fields optionalJorge Aparicio
2017-07-08fix unused variable warning around interrupt::freeJorge Aparicio
2017-07-08rename rtfm-macros to cortex-m-rtfm-macrosJorge Aparicio