mirror of
https://github.com/6-robot/wpb_home.git
synced 2025-09-15 12:58:59 +08:00
12 lines
330 B
Bash
12 lines
330 B
Bash
#!/bin/bash
|
|
|
|
echo "***************"
|
|
echo "remap the device serial port(ttyUSBX) to ftdi"
|
|
echo "start copy ftdi.rules to /etc/udev/rules.d/"
|
|
sudo cp `rospack find wpb_home_bringup`/scripts/ftdi.rules /etc/udev/rules.d
|
|
echo "Restarting udev"
|
|
sudo service udev reload
|
|
sudo service udev restart
|
|
echo "finish"
|
|
echo "***************"
|