/** * \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]); }
/** * @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); }