Other Parts Discussed in Thread: MSP430F2618 IAR WorkBench 5.1, 使用msp430f2618,main memory 0x03100 - 0x1FFFF,想将变量存入flash,比如
const double data @ 0xFC00 = 0.1; 这样没有问题。可如果将变量存储在0xFFFF之外,比如
const double data @ 0x1FC00 = 0.1; 则会报错 Error[Ta028]: Placing a located…
Other Parts Discussed in Thread: MSP430F5359 , MSP430F2618 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。 https://e2e.ti.com/support/microcontrollers/msp-low-power-microcontrollers-group/msp430/f/msp-low-power-microcontroller-forum/733428/msp430f5359…
Other Parts Discussed in Thread: MSP430F149 , MSP430F2618 最近在研究UCOS2系统,在移植的时候程序在MSP430F149上运行正常。但是如果将其移植到MSP430F2618上时,就会出现
Warning[408]: Only 16bit will be pushed to the stack. Use size specifier to avoid warning.
这个问题。后来我再试了其他芯片,好像只要是MSP430F261X系列的都有这个问题…
Other Parts Discussed in Thread: MSP430F2618 , MSP-FET 我用的是MSP430F2618, 用的是IAR,在接上JTAG后,进行download and debug,程序功能正常,但是一点退出调试的“×”就没功能了,我用一个LED做的测试,只有在调试模式下灯才亮。现象跟这个帖子很像 https://zhidao.baidu.com/question/451367755.html
请问各位高手有没有遇到这种情况,是什么原因…
Other Parts Discussed in Thread: MSP430F2618 我们有一个MSP430F2618.这个器件使用P3.6(用于TX)和P3.7(用于RX)。这两个引脚连接到一个CP2102的Silabs部分。这就意味着外面的部分面对这个器件的USB端口。请注意,MSP430F2618中烧入的BSL需要使用P1.1 (TX)和P2.2 (RX)。不幸的是,这些引脚已经赋予其它用途。
我们需要在现场下载固件程序到这个器件,只在PC上用一条USB线。
关于BSLs有许多很好的信息…
Other Parts Discussed in Thread: MSP430F2618 请问TI专家,我之前一直用的MSP430F2618,在时钟配置时,经常会用到这句:
if (CALBC1_1MHZ ==0xFF || CALDCO_1MHZ == 0xFF) //配置时钟 { while(1); // If calibration constants erased // do not load, trap CPU!! } BCSCTL1 = CALBC1_16MHZ; // Set ran…