mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Clear the interrupt prior to servicing the interrupt - previously it was the other way around.
This commit is contained in:
parent
bf5cd55c55
commit
ade2da38ed
|
@ -245,13 +245,12 @@ XIntc_VectorTableEntry *pxTable;
|
|||
{
|
||||
if( ulInterruptStatus & 0x01UL )
|
||||
{
|
||||
/* Clear the pending interrupt. */
|
||||
XIntc_mAckIntr( pxInterruptController->BaseAddress, ulInterruptMask );
|
||||
|
||||
/* Call the registered handler. */
|
||||
pxTable = &( pxInterruptController->HandlerTable[ xInterruptNumber ] );
|
||||
pxTable->Handler( pxTable->CallBackRef );
|
||||
|
||||
/* Clear the pending interrupt. */
|
||||
XIntc_mAckIntr( pxInterruptController->BaseAddress, ulInterruptMask );
|
||||
break;
|
||||
}
|
||||
|
||||
/* Check the next interrupt. */
|
||||
|
|
Loading…
Reference in a new issue