CCS怎样将程序烧到flash中
1个回答
2016-02-26
展开全部
flash_f28027这个工程是烧写到flash中的例程,其他例程大部分都是在RAM中运行的,要想把运行在RAM中程序,需要添加以下程序段,建议参考flash_f28027工程
1、#pragma CODE_SECTION(xxxx, "ramfuncs");
2、extern Uint16 RamfuncsLoadStart;
extern Uint16 RamfuncsLoadSize;
extern Uint16 RamfuncsRunStart;
3、memcpy(&RamfuncsRunStart, &RamfuncsLoadStart, (size_t)&RamfuncsLoadSize);
4、InitFlash();
同时参考文献 f2802x-FRM-EX-UG.pdf 第17页 2.4.5 Executing the Examples From Flash
希望帮助到你
1、#pragma CODE_SECTION(xxxx, "ramfuncs");
2、extern Uint16 RamfuncsLoadStart;
extern Uint16 RamfuncsLoadSize;
extern Uint16 RamfuncsRunStart;
3、memcpy(&RamfuncsRunStart, &RamfuncsLoadStart, (size_t)&RamfuncsLoadSize);
4、InitFlash();
同时参考文献 f2802x-FRM-EX-UG.pdf 第17页 2.4.5 Executing the Examples From Flash
希望帮助到你
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询