index
:
rtic
main
Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
macros
/
src
/
trans.rs
Age
Commit message (
Expand
)
Author
2018-11-03
v0.4.0
Jorge Aparicio
2018-08-24
more fixes
Jorge Aparicio
2018-06-07
Fix "Could not find `Op` in `proc_macro`"
Ferdia McKeogh
2018-04-16
update parser
Jorge Aparicio
2018-01-11
adapt to changes in the cortex-m crate
Jorge Aparicio
2017-12-17
add missing comma
Jorge Aparicio
2017-12-09
safe `&'static mut` references via init.resources
Jorge Aparicio
2017-12-09
implement the Resource trait for owned resources
Jorge Aparicio
2017-12-09
drop the Static wrapper
Jorge Aparicio
2017-12-09
make resource proxies not Sync
Jorge Aparicio
2017-12-09
make resource proxies !Send
Jorge Aparicio
2017-12-09
rename LateResourceValues to LateResources
Jorge Aparicio
2017-12-09
remove special case around peripherals from codegen
Jorge Aparicio
2017-12-09
peripherals as scoped singletons
Jorge Aparicio
2017-10-02
fix `idle::Resources::new`
Jorge Aparicio
2017-09-22
Fix shared resource handling and extend example.
Jonas Schievink
2017-09-22
Simplify iterator usage
Jonas Schievink
2017-09-06
Use `untagged_option` crate
Jonas Schievink
2017-09-03
Allow initialization of resources in `init`.
Jonas Schievink
2017-07-27
`Send`-ness check is now in rtfm-core
Jorge Aparicio
2017-07-27
make task.$T.path mandatory
Jorge Aparicio
2017-07-27
make task.$T.enabled optional
Jorge Aparicio
2017-07-27
don't generate empty modules
Jorge Aparicio
2017-07-27
refactor Resource / Threshold into its own crate, drop task!, tweak rtfm::atomic
Jorge Aparicio
2017-07-26
provide a Threshold token even when all resources are lockless
Jorge Aparicio
2017-07-26
fix around owned idle resource
Jorge Aparicio
2017-07-25
fix errors around the use of `super` in relative paths
Jorge Aparicio
2017-07-24
more "hygiene"
Jorge Aparicio
2017-07-24
task! is not needed if tasks.$T.path is specified
Jorge Aparicio
2017-07-23
don't wrap static references in a `Static`
Jorge Aparicio
2017-07-23
drop rtfm::Cell
Jorge Aparicio
2017-07-23
drop idle.locals
Jorge Aparicio
2017-07-20
misc fixes
Jorge Aparicio
2017-07-20
`Resource` trait, docs, examples and rtfm-syntax related changes
Jorge Aparicio
2017-07-18
make compatible with the unsafe_code lint
Jorge Aparicio
2017-07-18
tasks / idle have exclusive access to Threshold, but do not own the token
Jorge Aparicio
2017-07-18
resources owned by idle have 'static lifetime
Jorge Aparicio
2017-07-14
split macro parser into its own crate and improve error handling / reporting
Jorge Aparicio
2017-07-11
compiler plugin -> proc macro
Jorge Aparicio
2017-07-09
make the init::Resources argument optional
Jorge Aparicio
2017-07-08
fix unused variable warning around interrupt::free
Jorge Aparicio
2017-07-06
syntax tweaks, relax check, add set_pending(), deal with imported types
Jorge Aparicio
2017-07-06
rtfm!: remove init.resources and make idle.local optional
Jorge Aparicio
2017-07-04
rtfm! macro take 2
Jorge Aparicio