File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -601,6 +601,14 @@ you'll need to have `systemd-networkd` enabled to create `vcan0` via netdev or u
601601rules, which will be less reliable than the service configuration.
602602
603603```
604+ # Check if vcan module is present
605+ lsmod | grep vcan
606+ sudo modprobe vcan
607+ # if you see this - load modules
608+ # modprobe: FATAL: Module vcan not found in directory /lib/modules/$(uname -r)
609+ sudo apt-get update
610+ sudo apt install linux-modules-extra-$(uname -r)
611+
604612# Create a new service file
605613sudo tee /etc/systemd/system/vcan.service > /dev/null <<EOF
606614[Unit]
@@ -639,7 +647,7 @@ sudo apt-get install can-utils
639647candump vcan0 &
640648
641649# Send a test CAN message
642- cansend can0 123#DEADBEEF
650+ cansend vcan0 123#DEADBEEF
643651```
644652
645653For more information on configurating the CAN bus refer to the Jetson Linux developer guide:
You can’t perform that action at this time.
0 commit comments