修改lnk_msp430fr5969.cmd后程序无法正常运行,具体描述见附件,谢谢!
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
http://www.deyisupport.com/question_answer/microcontrollers/msp430/f/55/t/80305.aspx
这个问答里解释的是在.cmd文件里修改
CMD文件修改msp430内部的空间,ROM和RAM的大小吧。
想要CCS V6.1.3 修改MSP430FR5969程序存储位置,这个应该是物理的存储位置,比如电脑上C盘改到D盘,这个样子的吧。
我知道怎么改了,就是在cmd文件内修改,但需要修改2个地方,SECTIONS也需要修改
SECTIONS
{
GROUP(RW_IPE)
{
GROUP(READ_WRITE_MEMORY)
{
.TI.persistent : {} /* For #pragma persistent */
.cio : {} /* C I/O Buffer */
.sysmem : {} /* Dynamic memory allocation area */
} PALIGN(0x0400), RUN_START(fram_rw_start)
GROUP(IPENCAPSULATED_MEMORY)
{
.ipestruct : {} /* IPE Data structure */
.ipe : {} /* IPE */
.ipe_const : {} /* IPE Protected constants */
.ipe:_isr : {} /* IPE ISRs */
.ipe_vars : type = NOINIT{} /* IPE variables */
} PALIGN(0x0400), RUN_START(fram_ipe_start) RUN_END(fram_ipe_end) RUN_END(fram_rx_start)
} > 0xEC00