Home
last modified time | relevance | path

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

/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_can.c1714 uint32_t interrupts = READ_REG(hcan->Instance->IER); in HAL_CAN_IRQHandler() local
1722 if ((interrupts & CAN_IT_TX_MAILBOX_EMPTY) != 0U) in HAL_CAN_IRQHandler()
1855 if ((interrupts & CAN_IT_RX_FIFO0_OVERRUN) != 0U) in HAL_CAN_IRQHandler()
1868 if ((interrupts & CAN_IT_RX_FIFO0_FULL) != 0U) in HAL_CAN_IRQHandler()
1887 if ((interrupts & CAN_IT_RX_FIFO0_MSG_PENDING) != 0U) in HAL_CAN_IRQHandler()
1904 if ((interrupts & CAN_IT_RX_FIFO1_OVERRUN) != 0U) in HAL_CAN_IRQHandler()
1917 if ((interrupts & CAN_IT_RX_FIFO1_FULL) != 0U) in HAL_CAN_IRQHandler()
1936 if ((interrupts & CAN_IT_RX_FIFO1_MSG_PENDING) != 0U) in HAL_CAN_IRQHandler()
1953 if ((interrupts & CAN_IT_SLEEP_ACK) != 0U) in HAL_CAN_IRQHandler()
1972 if ((interrupts & CAN_IT_WAKEUP) != 0U) in HAL_CAN_IRQHandler()
[all …]
Dstm32l4xx_hal_gfxmmu.c668 uint32_t flags, interrupts, error; in HAL_GFXMMU_IRQHandler() local
672 interrupts = (hgfxmmu->Instance->CR & GFXMMU_CR_ITS_MASK); in HAL_GFXMMU_IRQHandler()
673 error = (flags & interrupts); in HAL_GFXMMU_IRQHandler()
/loramac-node-latest/src/boards/mcu/saml21/hal/documentation/
Dtimer.rst41 The task queue is not protected from the access by interrupts not used by the driver. Due to this
42 it is not recommended to add or remove a task from such interrupts: in case if a higher priority in…
47 …sk queue is therefore processed in interrupt context which may delay execution of other interrupts.
48 * If there are a lot of frequently called interrupts with the priority higher than the driver's one…