0


canopen开源库canfestival编译、移植、使用

canfestival下载地址:https://hg.beremiz.org/canfestival

一般ubuntu环境编译:

1、./configure --prefix=$PWD/myinstall --can=socket --debug=WAR,MSG
2、make all
遇到python报错解决方法如下:
sudo apt-get install python安装python2
sudo ln -s /usr/bin/python2 /usr/bin/python建立链接
3、sudo make install

板子上交叉编译:

1、./configure --cc=aarch64-linux-gnu-gcc --arch=aarch64 --prefix=$PWD/myinstall --can=socket --debug=WAR,MSG
2、make all
遇到python报错解决方法同上
3、sudo make install
存在can口测试:

1、ifconfig -a查看网口列表,该命令即便can口没打开也会被找到

2、can口关闭、设置、打开:
sudo ifconfig can0 down
sudo ip link set can0 type can bitrate 250000
sudo ifconfig can0 up

3、can0测试:进入编译后得到的可执行文件目录$PWD/myinstall/bin,多个终端执行以下命令,观察现象:

./CANOpenShell load#../lib/libcanfestival_can_socket.so,can0,500k,1,1

没有can口则创建虚拟can口测试:

1、确认安装了环境,不管有没有安装can-utils走一遍总没错:sudo apt install can-utils

2、加载vcan内核模块、创建虚拟CAN接口、将虚拟CAN接口处于在线状态

sudo modprobe vcan

sudo ip link add dev vcan0 type vcan

sudo ip link set up vcan0

3、类似上面步骤多终端执行以下命令:

./CANOpenShell load#../lib/libcanfestival_can_socket.so,vcan0,500k,1,1

一般ubuntu环境移植:

1、win10_64下Canfestival对象字典工具objdictedit运行环境配置:
https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi下载python-2.7.10.amd64.msi,安装时记得选择Add python.exeto Path,也可以在安装完成之后手动将安装路径添加到系统环境变量中(当然,这个较为麻烦,尽量前一种方式,没找着就反复卸了再装,找到那个选项加上为止)

https://sourceforge.net/projects/wxpython/files/wxPython/2.8.12.1/wxPython2.8-win64-unicode-2.8.12.1-py27.exe/download下载wxPython2.8-win64-unicode-2.8.12.1-py27.exe,一路默认安装下去就行了

解压源码objdictgen目录下的Gnosis_Utils-current.tar.gz,使得该目录下存在gnosis目录

2、使用源码目录下objdictgen目录下的objdictedit.py生成需要的.h和.c文件:

打开objdictedit.py

文件

新建

选定为上图情形,确认

文件

建立词典

路径自己选,保存

3、弄三个.h和.c的文件,然后弄下Makefile文件,文件名及源码如下:

master.h

  1. #include "canfestival.h"
  2. #include "data.h"
  3. #include <unistd.h>
  4. #include <stdio.h>
  5. INTEGER8 InitCANdevice( char* bus, UNS32 baudrate, UNS8 node );
  6. void MasterNode_heartbeatError(CO_Data* d, UNS8);
  7. UNS8 MasterNode_canSend(Message *);
  8. void MasterNode_initialisation(CO_Data* d);
  9. void MasterNode_preOperational(CO_Data* d);
  10. void MasterNode_operational(CO_Data* d);
  11. void MasterNode_stopped(CO_Data* d);
  12. void MasterNode_post_sync(CO_Data* d);
  13. void MasterNode_post_TPDO(CO_Data* d);
  14. void MasterNode_storeODSubIndex(CO_Data* d, UNS16 wIndex, UNS8 bSubindex);
  15. void MasterNode_post_emcy(CO_Data* d, UNS8 nodeID, UNS16 errCode, UNS8 errReg);

master.c

  1. #include "MasterNode.h"
  2. #include "master.h"
  3. static UNS8 masterNodeID = 0;
  4. void InitNode(CO_Data* d, UNS32 id)
  5. {
  6. /* Defining the node Id */
  7. setNodeId(&MasterNode_Data, masterNodeID);
  8. /* CAN init */
  9. setState(&MasterNode_Data, Initialisation);
  10. }
  11. void Exit(CO_Data* d, UNS32 id)
  12. {
  13. setState(&MasterNode_Data, Stopped);
  14. }
  15. INTEGER8 InitCANdevice(char * bus, UNS32 baudrate, UNS8 node )
  16. {
  17. char busName[2];
  18. char baudRate[7];
  19. s_BOARD board;
  20. sprintf(baudRate, "%uK", baudrate);
  21. board.busname = bus;
  22. board.baudrate = baudRate;
  23. masterNodeID = node;
  24. MasterNode_Data.heartbeatError = MasterNode_heartbeatError;
  25. MasterNode_Data.initialisation = MasterNode_initialisation;
  26. MasterNode_Data.preOperational = MasterNode_preOperational;
  27. MasterNode_Data.operational = MasterNode_operational;
  28. MasterNode_Data.stopped = MasterNode_stopped;
  29. MasterNode_Data.post_sync = MasterNode_post_sync;
  30. MasterNode_Data.post_TPDO = MasterNode_post_TPDO;
  31. MasterNode_Data.storeODSubIndex = MasterNode_storeODSubIndex;
  32. MasterNode_Data.post_emcy = MasterNode_post_emcy;
  33. TimerInit();
  34. if(!canOpen(&board, &MasterNode_Data))
  35. {
  36. printf("aInitCANdevice() CAN bus %s opening error, baudrate=%s",board.busname, board.baudrate);
  37. return -1;
  38. }
  39. printf("InitCANdevice(), canOpen() OK, starting timer loop...");
  40. /* Start timer thread */
  41. StartTimerLoop(&InitNode);
  42. /* wait Ctrl-C */
  43. pause();
  44. printf("Finishing.");
  45. /* Stop timer thread */
  46. StopTimerLoop(&Exit);
  47. return 0;
  48. }
  49. void MasterNode_heartbeatError(CO_Data* d, UNS8 heartbeatID)
  50. {
  51. printf("MasterNode_heartbeatError %d", heartbeatID);
  52. }
  53. void MasterNode_initialisation(CO_Data* d )
  54. {
  55. printf("MasterNode_initialisation");
  56. }
  57. void MasterNode_preOperational(CO_Data* d)
  58. {
  59. printf("MasterNode_preOperational");
  60. setState(d, Operational);
  61. }
  62. void MasterNode_operational(CO_Data* d)
  63. {
  64. printf("MasterNode_operational");
  65. }
  66. void MasterNode_stopped(CO_Data* d)
  67. {
  68. printf("MasterNode_stopped");
  69. }
  70. void MasterNode_post_sync(CO_Data* d)
  71. {
  72. printf("MasterNode_post_sync");
  73. }
  74. void MasterNode_post_TPDO(CO_Data* d)
  75. {
  76. printf("MasterNode_post_TPDO");
  77. }
  78. void MasterNode_storeODSubIndex(CO_Data* d, UNS16 wIndex, UNS8 bSubindex)
  79. {
  80. /*TODO :
  81. * - call getODEntry for index and subindex,
  82. * - save content to file, database, flash, nvram, ...
  83. *
  84. * To ease flash organisation, index of variable to store
  85. * can be established by scanning d->objdict[d->ObjdictSize]
  86. * for variables to store.
  87. *
  88. * */
  89. printf("MasterNode_storeODSubIndex : %4.4x %2.2xh", wIndex, bSubindex);
  90. }
  91. void MasterNode_post_emcy(CO_Data* d, UNS8 nodeID, UNS16 errCode, UNS8 errReg)
  92. {
  93. printf("Slave received EMCY message. Node: %2.2xh ErrorCode: %4.4x ErrorRegister: %2.2xh", nodeID, errCode, errReg);
  94. }

main.c

  1. #include "master.h"
  2. int main(int argc,char **argv)
  3. {
  4. char* LibraryPath = (char*)"/home/hx/compile/canfestival-de1fc3261f21/myinstall/lib/libcanfestival_can_socket.so";
  5. LoadCanDriver(LibraryPath);
  6. if(InitCANdevice((char*)"vcan0" , 500000, 0x0A) < 0)
  7. {
  8. printf("InitCANdevice() failed, exiting.");
  9. return -1;
  10. }
  11. return 0;
  12. }

Makefile

  1. #编译环境
  2. GXX_C = gcc
  3. #头文件和库
  4. INCLUDES += -I./canfestival/include
  5. INCLUDES += -I./canfestival/include/timers_unix
  6. INCLUDES += -I./canfestival/include/unix
  7. INCLUDES += -I./canfestival/include/AVR
  8. LIBS += -lpthread -lrt -ldl
  9. #.c文件
  10. FILES_C = $(wildcard *.c)
  11. FILES_C += $(wildcard ./canfestival/src/*.c)
  12. FILES_C += $(wildcard ./canfestival/drivers/timers_unix/*.c)
  13. FILES_C += $(wildcard ./canfestival/drivers/unix/*.c)
  14. #.c文件生成的.o文件
  15. FILES_O_C = $(FILES_C:.c=.o)
  16. #目标文件
  17. TARGET = my_canfestival_test
  18. #编译:1、将.c文件编译成.o文件;2、将.o文件编译成目标文件
  19. all:$(TARGET)
  20. $(FILES_O_C):%.o:%.c
  21. $(GXX_C) -c $< -o $@ $(INCLUDES)
  22. $(TARGET):$(FILES_O_C) $(FILES_O_CPP)
  23. $(GXX_C) -o $(TARGET) $(FILES_O_C) $(FILES_O_CPP) $(LIBS)
  24. #清理:目标文件、.c文件生成的.o文件
  25. clean:
  26. rm -rf $(TARGET) $(FILES_O_C)

4、拷贝及修改需要的文件、编译

建一个目录canfestival,将源码目录下的drivers、include、src三个目录拷贝进去

make编译

报错:fatal error: avr/io.h: 没有那个文件或目录

修改include/AVR/config.h将选中地方注释或去掉

报错:在函数‘check_and_start_node’中:
dcf.c:(.text+0x61):对‘start_node’未定义的引用

修改src/dcf.c将

选中地方最前面加上static

类似上面的报错还有一个start_and_seek_node,解决方法同上

5、测试编译出来的my_canfestival_test

main.c文件中的main函数里面用到了编译出来的库,所以记得要填对位置

准备好虚拟vcan0环境

多终端执行./my_canfestival_test看效果

6、清理多余的文件

针对canfestival目录清理多余的文件,最后效果如以下图:

标签: ubuntu arm开发

本文转载自: https://blog.csdn.net/hx0318/article/details/127644995
版权归原作者 黄忻 所有, 如有侵权,请联系我们删除。

“canopen开源库canfestival编译、移植、使用”的评论:

还没有评论