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