Open dwisth opened 5 years ago
Here's the rough method we figured out for resetting the VI sensor reliably if not working:
ps aux | grep dhclient
sudo kill -9 <process number>
ssh root@10.0.0.1
reboot
ping 10.0.0.1
sudo dhclient enx<tab complete here>
The main problem is that the VI sensor is DHCP master so the PC needs to request an IP from the sensor.
our new awesome launch file. new_awesome_launch_file.launch.txt
Thanks a lot @dwisth We added this in #27, but it needs to be tested on the robot.
Here's the rough method we figured out for resetting the VI sensor reliably if not working:
ps aux | grep dhclient
sudo kill -9 <process number>
as many times as required.ssh root@10.0.0.1
reboot
wait approx 20 seconds. Check it has rebooted withping 10.0.0.1
.sudo dhclient enx<tab complete here>
. This takes time.The main problem is that the VI sensor is DHCP master so the PC needs to request an IP from the sensor.