コード例 #1
0
/*
** Interrupt Handler for Core 0 Receive interrupt
*/
static void CPSWCore0RxIsr(void)
{
    lwIPRxIntHandler(0);
}
コード例 #2
0
ファイル: lwiplib.c プロジェクト: ragunath3252/lwip-drv
/**
 * @brief Interrupt Handler for Core Receive interrupt
 * 
 * @param instNum The device Instance number
 */
static void CPSWCore0RxIsr(void* instNum)
{
    lwIPRxIntHandler((unsigned int)instNum);
}