mirror of
https://github.com/westonrobot/scout_ros.git
synced 2026-01-12 03:15:01 +08:00
10 lines
190 B
Bash
Executable File
10 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# enable kernel module: gs_usb
|
|
sudo modprobe gs_usb
|
|
|
|
# bring up can interface
|
|
sudo ip link set can0 up type can bitrate 500000
|
|
|
|
# install can utils
|
|
sudo apt install -y can-utils |