UartISRFilled

void Uart0_ISR(void)
{
    if(UART0_ISR->function != NULL)
    {
        (*UART0_ISR->function)();
    }   
}

Share >