我正在使用Mozzi库(http://sensorium.github.io/Mozzi/)作为教程(http://www.echanter.com/home/howto-build#TOC-Arduino-IDE)的一部分。我在Arduino Studio中包含了Mozzi,并在教程中遵循了一些较小的配置。我环顾了报告的内容,但感到困惑。编译错误是:
Mozzi/mozzi_fixmath.cpp.o: In function isqrt16(unsigned int)': /home/temp/sketchbook/libraries/Mozzi/mozzi_fixmath.cpp:156: multiple definition of isqrt32(unsigned long)'
echanter.cpp.o:/home/temp/sketchbook/libraries/Mozzi/Sample.h:61: first defined here
collect2: error: ld returned 1 exit status
答案 0 :(得分:0)
在根目录中有两个定义了isqrt16(unsigned int)的文件:mozzi_fixmath.cpp和mozzi_fixmath.h。我注释掉了cpp文件中的定义,并对其进行了编译。