This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Enable ether Rx Interrupt

Hi.

I'm using AM335x GeneralPurpose EVM. I want to enable SYS_INT_3PGSWRXINT0.

I referred to the sample of Starterware and wrote following code . But it doesn't work well.

static void AintcCPSWIntrSetUp(void){
    IntAINTCInit();
    IntRegister(SYS_INT_3PGSWRXINT0, CPSWCore0RxIsr);
    IntPrioritySet(SYS_INT_3PGSWRXINT0, 0, AINTC_HOSTINT_ROUTE_IRQ);
    IntSystemEnable(SYS_INT_3PGSWRXINT0);
    IntMasterIRQEnable();
}

Why doesn't this work? Other setup is insufficient?
Any help much appreciated.

Thanks.

Yuta