merge latest rosbuzz dev
This commit is contained in:
commit
e22f35a26e
|
@ -6,5 +6,8 @@ takeoff_heights ={
|
||||||
.6 = 3.0,
|
.6 = 3.0,
|
||||||
.9 = 15.0,
|
.9 = 15.0,
|
||||||
.11 = 6.0,
|
.11 = 6.0,
|
||||||
.16 = 9.0
|
.16 = 9.0,
|
||||||
|
.17 = 3.0,
|
||||||
|
.18 = 6.0,
|
||||||
|
.19 = 9.0
|
||||||
}
|
}
|
|
@ -54,6 +54,11 @@ function updaterobot {
|
||||||
echo "Installing launch file for Solo"
|
echo "Installing launch file for Solo"
|
||||||
echo "With xbeemav"
|
echo "With xbeemav"
|
||||||
rosrun robot_upstart install --logdir /media/key/ROS_WS/log/ dji_sdk_mistlab/launch_robot/solo.launch
|
rosrun robot_upstart install --logdir /media/key/ROS_WS/log/ dji_sdk_mistlab/launch_robot/solo.launch
|
||||||
|
elif [ "$1" = 4 ] && [ "$2" = "X" ]
|
||||||
|
then
|
||||||
|
echo "Installing launch file for Spiris"
|
||||||
|
echo "With xbeemav"
|
||||||
|
rosrun robot_upstart install --logdir /media/key/ROS_WS/log/ dji_sdk_mistlab/launch_robot/spiri.launch
|
||||||
elif [ "$1" = 0 ] && [ "$2" = "H" ]
|
elif [ "$1" = 0 ] && [ "$2" = "H" ]
|
||||||
then
|
then
|
||||||
echo "Installing launch file for TX-ubuntu16 with usb2serial"
|
echo "Installing launch file for TX-ubuntu16 with usb2serial"
|
||||||
|
|
|
@ -44,7 +44,7 @@ logical_clock(ros::Time()), previous_step_time(ros::Time())
|
||||||
SetStreamRate(0, 10, 1);
|
SetStreamRate(0, 10, 1);
|
||||||
|
|
||||||
// Get Home position - wait for none-zero value
|
// Get Home position - wait for none-zero value
|
||||||
while (cur_pos.latitude == 0.0f)
|
while ((cur_pos.latitude == 0.0f) || (cur_pos.altitude < -1000.0))
|
||||||
{
|
{
|
||||||
ROS_INFO("Waiting for GPS. ");
|
ROS_INFO("Waiting for GPS. ");
|
||||||
ros::Duration(0.5).sleep();
|
ros::Duration(0.5).sleep();
|
||||||
|
|
Loading…
Reference in New Issue