blob: a7900343f3dd1dcba37362a95f6145cf6518bf40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/sh
CAN_DEVICE=can0
CAN_BITRATE=500000
echo "Check if CAN module loaded:"
lsmod | grep can > /dev/null
if [ "$?" -ne "0" ]; then
echo -e "\tCAN module is not loaded, loading it..."
sudo modprobe can
if [ "$?" -ne "0" ]; then
echo -e "\tFAILED to load CAN module !"
exit 1
fi
echo -e "\tCAN module loaded."
fi
echo "Setup connection:"
sudo ip link set $CAN_DEVICE type can bitrate $CAN_BITRATE
if [ "$?" -ne 0 ]; then
echo -e "\tFAILED to configure $CAN_DEVICE interface !"
exit 2
fi
sudo ip link set up $CAN_DEVICE
if [ "$?" -ne 0 ]; then
echo -e "\tFAILED to enable $CAN_DEVICE interface !"
exit 3
fi
echo "Ready to use $CAN_DEVICE !"
|