Home
last modified time | relevance | path

Searched refs:priority_pos (Results 1 – 1 of 1) sorted by relevance

/bsp/samd21/sam_d2x_asflib/sam0/drivers/system/interrupt/
A Dsystem_interrupt.c173 uint8_t priority_pos = ((vector % 4) * 8) + (8 - __NVIC_PRIO_BITS); in system_interrupt_set_priority() local
176 (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() local
209 ((NVIC->IP[register_num] >> priority_pos) & _SYSTEM_INTERRUPT_PRIORITY_MASK); in system_interrupt_get_priority()

Completed in 4 milliseconds