Functions | |
s32 | MIOS32_IRQ_Disable (void) |
s32 | MIOS32_IRQ_Enable (void) |
s32 | MIOS32_IRQ_Install (u8 IRQn, u8 priority) |
s32 | MIOS32_IRQ_DeInstall (u8 IRQn) |
System Specific IRQ Enable/Disable routines
This function deinstalls an interrupt service.
[in] | IRQn | the interrupt number as defined in the CMSIS (e.g. CAN_IRQn) |
s32 MIOS32_IRQ_Disable | ( | void | ) |
This function disables all interrupts (nested)
s32 MIOS32_IRQ_Enable | ( | void | ) |
This function enables all interrupts (nested)
This function installs an interrupt service.
[in] | IRQn | the interrupt number as defined in the CMSIS (e.g. CAN_IRQn) |
[in] | priority | the priority from 0..15 - than lower the value, than higher the priority. Please prefer the usage of MIOS32_IRQ_PRIO_LOW .. MID .. HIGH .. HIGHEST |