5、
6、Updata Target before Debugging 不勾选前面的复选框。
7、RAM.ini文件内容如下:
FUNC void Setup (void) {
SP = _RDWORD(0x20000000); // Setup Stack Pointer
PC = _RDWORD(0x20000004); // Setup Program Counter
//_WDWORD(0xE000ED08, 0x20000000); // Setup Vector Table Offset Register
}
//LOAD RAM\board.axf INCREMENTAL // Download
Setup(); // Setup for Running
g, main
/**********************************************************************************/
其中:
1、_WDWORD(0xE000ED08, 0x20000000);中断向量表重载,如果程序内有中断向量表重载,那么这条就可以给注释掉
程序中的重载函数:
void NVIC_Configuration(void)
{
NVIC_InitTypeDef NVIC_InitStructure;
#ifdef VECT_TAB_RAM
NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
#else
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);
#endif
}
2、LOAD RAM\board.axf INCREMENTAL 如果注释掉的话,需将Target->Debug->Load Application at Startup 和 Run to main()前面的复选框都勾选上。 |