Skip to content

Commit 0874b80

Browse files
authored
Update NVIDIA_JETSON_DEVELOPER_KIT_SETUP.md
1 parent 9d2121c commit 0874b80

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/NVIDIA_JETSON_DEVELOPER_KIT_SETUP.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,14 @@ you'll need to have `systemd-networkd` enabled to create `vcan0` via netdev or u
601601
rules, 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
605613
sudo tee /etc/systemd/system/vcan.service > /dev/null <<EOF
606614
[Unit]
@@ -639,7 +647,7 @@ sudo apt-get install can-utils
639647
candump vcan0 &
640648
641649
# Send a test CAN message
642-
cansend can0 123#DEADBEEF
650+
cansend vcan0 123#DEADBEEF
643651
```
644652

645653
For more information on configurating the CAN bus refer to the Jetson Linux developer guide:

0 commit comments

Comments
 (0)