完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,
我使用STM32 foc sdk 3.2进行atollic用于电机控制。 当我编译我的项目时,我总是遇到同样的错误: .. srcmain.c:40:对“MCboot”的未定义引用 .. src / main.c:41:对“MCI_ExecSpeedRamp”的未定义引用 .. src / main.c:42:对“MCI_StartMotor”的未定义引用 .. src / main.c:44:对“MCI_StopMotor”的未定义引用 但CMCI oMCI没有问题[MC_NUM],CMCT oMCT [MC_NUM]; 我已将所有文件.h与主文件链接在一起。 你可以帮帮我吗? 谢谢 我的代码: #define PROJECT_CHK #include''CrossCheck.h'' #undef PROJECT_CHK #if defined(PFC_ENABLED) #include''PIRegulatorClass.h'' #万一 #include''MCTuningClass.h'' #include''MCInterfaceClass.h'' #if defined(PFC_ENABLED) #include''PFCInit.h'' #include''PFCApplication.h'' #万一 #include''MCTasks.h'' #include''参数conversion.h'' #ifdef DUALDRIVE #include''参数转换电机2.h'' #万一 #include''Timebase.h'' #include''UITask.h'' #include''MCLibraryISRPriorityConf.h'' #include&lt; stdio.h&gt; #include''stm32_eval.h'' CMCI oMCI [MC_NUM]; CMCT oMCT [MC_NUM]; int main(void) { int i; MCboot(OMCI,OMCT); MCI_ExecSpeedRamp(OMCI [1],100,1000); MCI_StartMotor(OMCI [1]); 对于(I = 0; I&LT = 500000;我++); MCI_StopMotor(OMCI [1]); } 以上来自于谷歌翻译 以下为原文 Hi, I work on atollic with stm32 foc sdk 3.2 for motor control. When I compil my project, I have always the same errors : ..srcmain.c:40: undefined reference to `MCboot' ..src/main.c:41: undefined reference to `MCI_ExecSpeedRamp' ..src/main.c:42: undefined reference to `MCI_StartMotor' ..src/main.c:44: undefined reference to `MCI_StopMotor' but no problem with CMCI oMCI[MC_NUM], CMCT oMCT[MC_NUM]; I have linked all files .h with the main file. Could you help me? Thank you my code : #define PROJECT_CHK #include ''CrossCheck.h'' #undef PROJECT_CHK #if defined(PFC_ENABLED) #include ''PIRegulatorClass.h'' #endif #include ''MCTuningClass.h'' #include ''MCInterfaceClass.h'' #if defined(PFC_ENABLED) #include ''PFCInit.h'' #include ''PFCApplication.h'' #endif #include ''MCTasks.h'' #include ''Parameters conversion.h'' #ifdef DUALDRIVE #include ''Parameters conversion motor 2.h'' #endif #include ''Timebase.h'' #include ''UITask.h'' #include ''MCLibraryISRPriorityConf.h'' #include #include ''stm32_eval.h'' CMCI oMCI[MC_NUM]; CMCT oMCT[MC_NUM]; int main(void) { int i; MCboot(oMCI,oMCT); MCI_ExecSpeedRamp(oMCI[1],100,1000); MCI_StartMotor(oMCI[1]); for(i=0;i<=500000;i++); MCI_StopMotor(oMCI[1]); } |
|
相关推荐
5个回答
|
|
Ciao Julien
我认为您对CMCI和CMCT没有任何问题,因为您已经包含了.h文件,但我担心您还需要建立和链接MC应用程序项目,该项目包含MCboot,MCI_ExecSpeedRamp等的实现。 您可以将提供的IAR工作空间作为指导。 再见 梁咏琪 以上来自于谷歌翻译 以下为原文 Ciao Julien I think that you have no problem with CMCI and CMCT because you has included the .h file but I fear that you need also to bulild and link the MC Application project that contatins the implementation of MCboot, MCI_ExecSpeedRamp and so on. You can take as guideline the provided IAR workspaces. Ciao Gigi |
|
|
|
谢谢您的回答,
我认为这是因为atollic无法识别库(单个双驱动器.a)。当我添加库时,编译器找不到库的方法。 有一种特殊的方法可以在Atollic上添加这个库吗? 问候 以上来自于谷歌翻译 以下为原文 Thank you for your answer, I think it's because the library (single dual drive.a) is not recognized by atollic. When I add the library, the compilator don't find the way for library. There is a special way to add this library on Atollic ? Regards |
|
|
|
Ciao Julien,
我使用Atollic的问题之一是当我忘记将前缀lib添加到链接库的名称时。 你有可能遇到同样的问题吗? 当然,库必须使用Atollic进行编译。 再见 梁咏琪 以上来自于谷歌翻译 以下为原文 Ciao Julien, one of the problem that I had using Atollic was when I forgot to add the prefix lib to the name of the linked library. It is possible that you have the same problem? Of course the library must be compiled with Atollic. Ciao Gigi |
|
|
|
我必须把这个库放到文件夹MCapplication library sdk foc 3.2中吗?
以上来自于谷歌翻译 以下为原文 I must place this library into folder MCapplication library sdk foc 3.2 ? |
|
|
|
Ciao Julien
我不是Atollic IDE的专家,但我想你必须把它们放在项目的范围内。通常会有一些设置,您可以在其中设置要链接的库的路径。我们更好地研究Atollic的文档;) 再见 梁咏琪 以上来自于谷歌翻译 以下为原文 Ciao Julien I'm not an expert of Atollic IDE but I suppose that you have to put them under the scope of the project. Usually there is some setting on where you can set the path of the library you want to link. Is better that we study deeply the documentation of Atollic ;) Ciao Gigi |
|
|
|
只有小组成员才能发言,加入小组>>
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
2623 浏览 1 评论
3206 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
1779 浏览 1 评论
3605 浏览 6 评论
5984 浏览 21 评论
936浏览 4评论
1311浏览 4评论
在Linux上安装Atollic TRUEStudio的步骤有哪些呢?
579浏览 3评论
使用DMA激活某些外设会以导致外设无法工作的方式生成代码是怎么回事
1299浏览 3评论
1354浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-20 07:00 , Processed in 1.252740 second(s), Total 86, Slave 70 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号