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
/
tests
/
cfail
Age
Commit message (
Expand
)
Author
2019-02-12
update examples and tests
Jorge Aparicio
2019-02-12
forbid early returns in init
Jorge Aparicio
2018-12-16
properly handle #[cfg] (conditional compilation) on resources
Jorge Aparicio
2018-11-03
v0.4.0
Jorge Aparicio
2018-08-24
more fixes
Jorge Aparicio
2018-04-16
update parser
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
make resource proxies not Sync
Jorge Aparicio
2017-12-09
deny warnings and unsafe code in tests and examples
Jorge Aparicio
2017-12-09
make resource proxies !Send
Jorge Aparicio
2017-12-09
rename LateResourceValues to LateResources
Jorge Aparicio
2017-12-08
fix cfail tests
Jorge Aparicio
2017-11-22
fix ci
Jorge Aparicio
2017-09-22
Add cfail test for late resources
Jonas Schievink
2017-09-22
Fix warning in wrong-threshold cfail test
Jonas Schievink
2017-07-27
`Send`-ness check is now in rtfm-core
Jorge Aparicio
2017-07-27
make task.$T.enabled optional
Jorge Aparicio
2017-07-27
update tests and examples
Jorge Aparicio
2017-07-24
add another duplicated-handler cfail test
Jorge Aparicio
2017-07-23
add cfail test: borrow can't escape critical sections
Jorge Aparicio
2017-07-23
update cfail tests
Jorge Aparicio
2017-07-20
more cfail tests
Jorge Aparicio
2017-07-18
tasks / idle have exclusive access to Threshold, but do not own the token
Jorge Aparicio
2017-07-18
add cfail tests
Jorge Aparicio
2017-07-04
rtfm! macro take 2
Jorge Aparicio
2017-05-08
require Resource protected data to be Send, make tokens !Send
Jorge Aparicio
2017-05-08
replace the ceiling token with a preemption threshold token
Jorge Aparicio
2017-04-27
make the ceiling part of the task signature
Jorge Aparicio
2017-04-25
fix cfail tests
Jorge Aparicio
2017-04-25
add a `peripherals!` macro
Jorge Aparicio
2017-04-25
change tasks! syntax to resemble struct initialization
Jorge Aparicio
2017-04-21
rename `borrow` to `access`
Jorge Aparicio
2017-04-21
reword the comments in compile-fail tests
Jorge Aparicio
2017-04-21
raise_to -> Ceiling.raise
Jorge Aparicio
2017-04-21
drop `lock` methods, add `raise_to` function
Jorge Aparicio
2017-04-21
more docs, remove Ceiling / Priority / Level traits
Jorge Aparicio
2017-04-19
remove claim, add Priority.as_ceiling
Jorge Aparicio
2017-04-19
remove the _mut methods
Jorge Aparicio
2017-04-19
critical: don't let the ceiling token escape the critical section
Jorge Aparicio
2017-04-19
don't let the ceiling token escape the critical section
Jorge Aparicio
2017-04-14
wrap references to resources in static-ref's Ref/RefMut
Jorge Aparicio
2017-04-14
add another would-be data race compile fail test
Jorge Aparicio
2017-04-14
remove unnecessary trait bounds
Jorge Aparicio
2017-04-13
regression test
Jorge Aparicio
2017-04-13
fix memory safety hole around `borrow`
Jorge Aparicio
2017-04-12
add cfail tests for the tasks! macro
Jorge Aparicio
2017-04-12
implement lock_mut
Jorge Aparicio
2017-04-12
add `claim_mut`
Jorge Aparicio
2017-04-09
compile time verified ceilings
Jorge Aparicio