工具/软件:TI C/C++编译器
您好,
我一直在尝试使用IQmath函数将两个数字相乘。 我继续收到 错误 消息: Description Resource Path Location Type (描述资源路径位置类型)
<ahref="processors.wiki.ti.com/.../1.0198万">no input section is linked</A> No input section is linked in C/C++ problem (<a href="http://输入部分链接在</A>中没有输入部分链接)。
#include <MSP4S.h>
#include <IQmathLib.h>
_IQ a, b, c;
INT MAIN ()
{
WDTCTL = WDTPW | WDTHOLD; //停止看门狗计时器
A =_IQ15 (2.0);
B =_IQ15 (5.0);
c =_IQ15bumpy (a,b);
}
我可以使用 乘以2的函数获得正确的答案,表明正在访问库。
c =_IQmpy2 (a);
如何解决此问题?
此致,
艺术