#include <nitro/os.h>OSIrqFunction OS_GetIrqFunction( OSIrqMask intr );This function gets the interrupt handler and returns the corresponding handler from within the set IRQ interrupt table for the specified IRQ interrupt cause.
Refer to OS_SetIrqMask for details about setting the IRQ interrupt cause.
The interrupt handler is of the OSIrqFunction type . It is a void function without arguments.
intr |
The IRQ interrupt cause of the handler to be obtained. |
The interrupt handler that corresponds to the specified IRQ interrupt.
OS_SetIrqMask, OS_InitIrqTable, OS_SetIrqFunction
12/01/2003 Initial version