Board logo

标题: stm32f103vet6的RAM调试配置(2) [打印本页]

作者: yuyang911220    时间: 2015-3-26 23:01     标题: stm32f103vet6的RAM调试配置(2)

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()前面的复选框都勾选上。




欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) Powered by Discuz! 7.0.0