drifting params increased

This commit is contained in:
isvogor 2017-05-12 11:26:11 -04:00
parent a5c1cf7754
commit b95deef1cb

View File

@ -738,7 +738,7 @@ namespace rosbzz_node{
moveMsg.pose.orientation.w = 1; moveMsg.pose.orientation.w = 1;
// To prevent drifting from stable position. // To prevent drifting from stable position.
if(fabs(x)>0.01 || fabs(y)>0.01) { if(fabs(x)>0.05 || fabs(y)>0.05) {
localsetpoint_nonraw_pub.publish(moveMsg); localsetpoint_nonraw_pub.publish(moveMsg);
ROS_INFO("Sent local NON RAW position message!"); ROS_INFO("Sent local NON RAW position message!");
} }