Exemplo n.º 1
0
/**
 * \brief   Interrupt handler for Receive Interrupt. Directly calls the
 *          cpsw interface receive interrupt handler.
 *
 * \param   instNum  The instance number of CPSW module for which receive 
 *                   interrupt happened
 *
 * \return  None.
*/
void lwIPRxIntHandler(unsigned int instNum) 
{
    cpswif_rx_inthandler(instNum, &cpswNetIF[0]);
}
Exemplo n.º 2
0
/**
 * @brief   Interrupt handler for Receive Interrupt. Directly calls the
 *          cpsw interface receive interrupt handler.
 *
 * @param   instNum  The instance number of CPSW module for which receive
 *                   interrupt happened
*/
static inline void lwIPRxIntHandler(const unsigned int instNum)
{
    cpswif_rx_inthandler(instNum);
}