Difference between revisions of "CANbus Module"Voipac webshop

From Voipac Wiki
Jump to navigation Jump to search
(Created page with "Category:iMX8M Industrial Development Kit Category:iMX8M Industrial Peripherals <!-- --> <div style="float:right">__TOC__</div> On this page PCIe card functionality i...")
 
 
(6 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
<!-- -->
 
<!-- -->
 
<div style="float:right">__TOC__</div>
 
<div style="float:right">__TOC__</div>
 
On this page PCIe card functionality is shown. Both Bluetooth and WiFi operations are tested using dual band Intel AC 3160 wireless card. Mini PCI Express slot must provide PCIe and USB signals to support all the features.
 
  
 
'''''Input:''''' None<br />
 
'''''Input:''''' None<br />
 
'''''Output:''''' Device driver is available
 
'''''Output:''''' Device driver is available
 +
 +
[[File:CANbus.png|500px]]
  
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
root@imx6-tinyrexpro:~# ip addr show dev can0
+
root@imx8mq-voipac:~# ip addr show dev can0
2: can0: <NOARP,ECHO> mtu 16 qdisc noop state DOWN group default qlen 10
+
1: can0: <NOARP,ECHO> mtu 16 qdisc noop state DOWN group default qlen 10
     link/can
+
     link/can  
</syntaxhighlight><br/>
+
</syntaxhighlight>
  
'''''Input:''''' Connect a pair of iMX6 TinyRex Development boards and a couple of dedicated [https://www.ti.com/tool/TCAN332EVM CAN evaluation modules]<br />
+
To setup can interface to 500kB bitrate use following command:
'''''Output:'''''  Boards communicate between each other. Sent messages are received successfully<br /><br />
+
<syntaxhighlight lang="bash">
 +
ip link set can0 up type can bitrate 500000
 +
</syntaxhighlight>
  
Board 1 (receiver) commands and outputs:
+
To test send data use following command:
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
root@imx6-tinyrexpro:~# ip link set can0 type can bitrate 1000000
+
cansend can0 365#AA.11.11
root@imx6-tinyrexpro:~# ip link set can0 up
 
flexcan 2090000.flexcan can0: writing ctrl=0x01232054
 
root@imx6-tinyrexpro:~# candump can0 &
 
[1] 833
 
root@imx6-tinyrexpro:~#  can0  123  [4]  DE AD BE EF
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Board 2 (transmitter and receiver) commands and outputs:
+
To test receiving data use following command:
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
root@imx6-tinyrexpro:~# ip link set can0 type can bitrate 1000000
+
candump can0
root@imx6-tinyrexpro:~# ip link set can0 up
 
flexcan 2090000.flexcan can0: writing ctrl=0x01232054
 
root@imx6-tinyrexpro:~# candump can0 &
 
[1] 847
 
root@imx6-tinyrexpro:~# cansend can0 123#DEADBEEF
 
root@imx6-tinyrexpro:~#  can0  123  [4]  DE AD BE EF
 
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
[[File:CANbus log.png]]

Latest revision as of 22:12, 11 February 2025

Input: None
Output: Device driver is available

CANbus.png

root@imx8mq-voipac:~# ip addr show dev can0
1: can0: <NOARP,ECHO> mtu 16 qdisc noop state DOWN group default qlen 10
    link/can

To setup can interface to 500kB bitrate use following command:

ip link set can0 up type can bitrate 500000

To test send data use following command:

cansend can0 365#AA.11.11

To test receiving data use following command:

candump can0

CANbus log.png