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