mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
rename priority
to logical
This commit is contained in:
parent
288b01ea07
commit
4da1963c8b
1 changed files with 4 additions and 4 deletions
|
@ -155,12 +155,12 @@ unsafe impl<T, Ceiling> Sync for Resource<T, Ceiling> {}
|
||||||
/// priorities like `1` and `2` aren't actually different)
|
/// priorities like `1` and `2` aren't actually different)
|
||||||
///
|
///
|
||||||
/// NOTE `logical` must be in the range `[1, 15]` (inclusive)
|
/// NOTE `logical` must be in the range `[1, 15]` (inclusive)
|
||||||
pub const fn priority(logical: u8) -> u8 {
|
pub const fn logical(priority: u8) -> u8 {
|
||||||
// NOTE elements 1 and 2 of the tuple are a poor man's const context range
|
// NOTE elements 1 and 2 of the tuple are a poor man's const context range
|
||||||
// checker
|
// checker
|
||||||
(((1 << PRIORITY_BITS) - logical) << (8 - PRIORITY_BITS),
|
(((1 << PRIORITY_BITS) - priority) << (8 - PRIORITY_BITS),
|
||||||
logical - 1,
|
priority - 1,
|
||||||
logical + 240)
|
priority + 240)
|
||||||
.0
|
.0
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue