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.

C2000LP配置为AT25F1024外部程序启动,怎么办?



GEL文件:

/********************************************************************/
/* EMU Boot Mode - Set Boot Mode During Debug */
/********************************************************************/
menuitem "EMU Boot Mode Select"
hotmenu EMU_BOOT_SPI()
{
*0xD00 = 0x55AA; /* EMU_KEY = 0x 55AA */
*0xD01 = 0x0004; /* Boot to SPI */
}

int emu_boot_set = 0;
OnReset(int nErrorCode)
{
if (GEL_IsInRealtimeMode()) /* If in real-time-mode */
{
}
else /* Put device in C28x mode */
{
C28x_Mode();
}
Unlock_CSM();
Device_Cal();

EMU_BOOT_SPI(); 
}

然后AT25F1024没任何数据啊,JTAG不会烧写数据到里面?