Hello,
I'm using the AM3517 with the latest CE BSP (ARM_A8_01_01_00_patch_01).
I want to use the internal EMAC for KITL debugging, but it's only running in polling mode, because the framework didn't get an IRQ from the BSPIntrRequestIrqs function.
I've added the following code and hoped that it will function:
intr.c:
case OMAP_CPGMAC_REGS_PA:
*pCount = 1;
*pIrq = GetIrqByDevice(OMAP_DEVICE_CPGMAC, L"RX");
rc = TRUE;
break;
The device gets connected to Visual Studio and I see the debug output, but it stops at the following line and I can't break into the code:
FSREG: Unable to read value "Start DevMgr" under HKEY_LOCAL_MACHINE\init\BootVars
Does anyone have an idea what could be wrong and if it's the right way, to give the Rx IRQ to KITL?
Thanks ahead!