Searched refs:priority_pos (Results 1 – 1 of 1) sorted by relevance
173 uint8_t priority_pos = ((vector % 4) * 8) + (8 - __NVIC_PRIO_BITS); in system_interrupt_set_priority() local176 (NVIC->IP[register_num] & ~(_SYSTEM_INTERRUPT_PRIORITY_MASK << priority_pos)) | in system_interrupt_set_priority()177 (priority_level << priority_pos); in system_interrupt_set_priority()203 uint8_t priority_pos = ((vector % 4) * 8) + (8 - __NVIC_PRIO_BITS); in system_interrupt_get_priority() local209 ((NVIC->IP[register_num] >> priority_pos) & _SYSTEM_INTERRUPT_PRIORITY_MASK); in system_interrupt_get_priority()
Completed in 4 milliseconds