现平台是pxa270,在做eboot的时候flash的擦函数出问题了经跟踪是停在这里 *pFlash = 0x00600060; *pFlash = 0x00d000d0; i = 0; while ((i & 0x00800080) != 0x00800080) { i = *pFlash; *pFlash = 0x00700070; dbgOutputDebugString("Stay in while %x
", i);//在这里加了调试语句! } 在上面的函数打印出来后显示读到的值是0x00800000,请问是什么问题啊。谢谢 |