예제 #1
0
파일: lwiplib.c 프로젝트: OS-Project/Divers
/**
 * \brief   Interrupt handler for Transmit Interrupt. Directly calls the 
 *          cpsw interface transmit interrupt handler.
 *
 * \param   instNum  The instance number of CPSW module for which transmit
 *                   interrupt happened
 *
 * \return  None.
*/
void lwIPTxIntHandler(unsigned int instNum)
{
    cpswif_tx_inthandler(instNum);
}
예제 #2
0
/**
 * @brief   Interrupt handler for Transmit Interrupt. Directly calls the
 *          cpsw interface transmit interrupt handler.
 *
 * @param   instNum  The instance number of CPSW module for which transmit
 *                   interrupt happened
*/
static inline void lwIPTxIntHandler(const unsigned int instNum)
{
    cpswif_tx_inthandler(instNum);
}