Keil定位常量、变量到指定地址 一、常量 - ROM区域 const char Version[] __attribute__((at(0x8001000))) = { 'M','V','1','0','0' }; 二、变量 - RAM区域 int val __attribute__((section(".ARM.__at_0x20000004"))) = 0x00; 三、函数 - ROM区域 #pragma arm section code=".ARM....
按下面格式定义就好了 INT8U TempBuf [1024] __attribute__((at(0X20002000))) = {0};不过地址 0X20002000这些要看你自己的片子了 呵呵 尽量大点 避免冲突