Action disabled: register

STKa8Xx

DIP switch SW1 and SW2 are used to configure the CAN interfaces CAN1 and CAN2.
{{:intern:general_information:tutorial:mba8xx-can.png?400|

root@MBaXXX:~ ip link show

output:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: can0: <NOARP,ECHO> mtu 16 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 10
    link/can
3: can1: <NOARP,ECHO> mtu 16 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 10
    link/can


root@MBaXXX:~ ip link set can0 up
root@MBaXXX:~ ip link set can1 up


root@MBaXXX:~ ip link set can0 down
root@MBaXXX:~ ip link set can1 down
root@MBaXXX:~ ip link set can0 type can bitrate <baudrate>
root@MBaXXX:~ ip link set can1 type can bitrate <baudrate>


  • Connect wires to the provided PHOENIX connectors from the Starterkit as shown below.


  • Following command examples shows how to test the CAN interface
root@MBaXXX:~ ip link set can0 down
root@MBaXXX:~ ip link set can1 down
root@MBaXXX:~ ip link set can0 type can bitrate 500000
root@MBaXXX:~ ip link set can1 type can bitrate 500000
root@MBaXXX:~ ip link set can0 up
root@MBaXXX:~ ip link set can1 up
root@MBaXXX:~ candump can1&
root@MBaXXX:~ cansend can0 5A1#11.2233.44556677.88

output:
root@tqma8xqp-mba8xx:~#   can1  5A1   [8]  11 22 33 44 55 66 77 88
root@MBaXXX:~ killall candump
root@MBaXXX:~ candump can0&
root@MBaXXX:~ cansend can1 5A1#11.2233.44556677.88

output:
root@tqma8xqp-mba8xx:~#   can0  5A1   [8]  11 22 33 44 55 66 77 88
root@MBaXXX:~ canconfig can<interface nr> bitrate <baudrate>

example

root@MBaXXX:~ ifconfig can<interface nr> up

example

root@MBaXXX:~ candump can1&
root@MBaXXX:~ cansend can0 <byte1> <byte2> 

example

  • Last modified: 2022/08/04 15:02