target.c中有以下代码:<br />void TargetResetInit(void)<br />{<br />#ifdef __DEBUG_RAM <br /> MEMMAP = 0x2; //remap<br />#endif<br /><br />#ifdef __DEBUG_FLASH <br /> MEMMAP = 0x1; //remap<br />#endif<br /><br />#ifdef __IN_CHIP <br /> MEMMAP = 0x1; //remap<br />#endif<br /><br />就是不知道__DEBUG_RAM,__DEBUG_FLASH,__IN_CHIP是在哪里定义的?好象是与ADS中的Target选项有关,想知道软件是怎么从ads界面的获得这些设置的? |
|