can bus test cmd on linux

本文介绍了一种使用 FlexCAN 接口进行 CAN 通信的基本测试方法。包括设置比特率、发送接收消息、过滤数据帧及调整比特率等操作。通过实际示例演示了如何在两个 CAN 通道间进行简单的发送和接收测试。

Testing command: cansend and candump

Reference website:
http://www.imxdev.org/wiki/index.php?title=All_Boards_FlexCAN

cmd line

Type command in terminal:

# ip link set can0 type can bitrate 500000
# ip link set can1 type can bitrate 500000
# ifconfig can0 up
# ifconfig can1 up
# candump can1 & (To Enable can1 receive) 
# cansend can0 -i0x123 0xaa 0xbb 0xcc 0xdd (can0 send 0xaabbccdd with ID 0x123)
# fg
-> <0x123> [4] aa bb cc dd (received by can1)

# Other Tests
Note: Before all test, you should set up bitrate at first.
(Set bitrate when can module is down. 5000 < BRT_value < 1000000)

# ip link set can0 type can bitrate BRT_value
# ip link set can1 type can bitrate BRT_value

Simple Tx/Rx Test, All receive 
# ifconfig can0 up 
# ifconfig can1 up 
# candump can1 & 
# cansend can0 -i0x123 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 
-> <0x123> [8] 11 22 33 44 55 66 77 88 


Add Filter to candump, kill the older candump at first 
# candump can1 --filter=0x123:0x7ff & 
# cansend can0 -i0x111 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 
-> not received(filter not hit) 

# cansend can0 -i0x123 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 
-> <0x123> [8] 11 22 33 44 55 66 77 88 


Change Bitrate and send message
# ifconfig can0 down 
# ip link set can0 type can 250000
# ifconfig can0 up 
# candump can1 & 
# cansend can0 -i0x123 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 
-> not received(different bitrate) 

# ifconfig can1 down 
# ip link set can1 type can 250000 
# ifconfig can1 up 
# candump can1 & 
# cansend can0 -i0x123 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 
   <0x123> [8] 11 22 33 44 55 66 77 88 
RTR message test
# ifconfig can0 up 
# ifconfig can1 up
# candump can1 & 
# cansend can0 –i0x123 –r
-> <0x123> [0] remote request
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值