2.50.3 GIC_RegisterPeripheralInterruptHandler Function
C
void GIC_RegisterPeripheralInterruptHandler(IRQn_Type irqID, peripheral_interrupt_handler_t pHandler);
Summary
Registers handler for Software Generated Interrupts.
Description
This API registers a handler for SGIs. This will result in a callback with the CPU ID when an SGI occurs.
Precondition
GIC_Initialize() is called
Parameters
| Param | Description |
|---|---|
| irqID | nIRQ ID of the interrupt |
| pHandler | Pointer to peripheral interrupt handler. |
Returns
None.
Example
Refer to Peripheral Callback Function pointer
Remarks
None.
