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.

ARM9_0: Can't Run Target CPU: (Error -2030 @ 0x2E7F5400) Internal error:



今天在调试OMAPL138的ARM端程序的时候出现以下问题希望各位帮忙解决下,main函数也一并贴出实现IO口的高低电平

错误如下:ARM9_0: Can't Run Target CPU: (Error -2030 @ 0x2E7F5400) Internal error: Access to unknown or invalid register was requested. Restart the application. If error persists, please report the error. (Emulation package 5.0.747.0) 

main函数代码如下:

void main(void)
{


GPIOBankPinInit();//GPIO初始化


for(;;)
{

HWREG(0x01E26000 + 0x1C) = (0x26);
//GPIOPinWrite(SOC_GPIO_0_REGS, 3, GPIO_PIN_LOW);
HWREG(0x01E26000 + 0x18) = (0x26);
//GPIOPinWrite(SOC_GPIO_0_REGS, 3, GPIO_PIN_HIGH);
HWREG(0x01E26000 + 0x1C) = (0x26);
HWREG(0x01E26000 + 0x18) = (0x26);
}
}