Browse Source

Copter: remove unnecessary abs

master
Randy Mackay 9 years ago committed by Tom Pittenger
parent
commit
da443417f1
  1. 4
      ArduCopter/commands_logic.cpp

4
ArduCopter/commands_logic.cpp

@ -299,7 +299,7 @@ void Copter::do_nav_wp(const AP_Mission::Mission_Command& cmd) @@ -299,7 +299,7 @@ void Copter::do_nav_wp(const AP_Mission::Mission_Command& cmd)
// this will be used to remember the time in millis after we reach or pass the WP.
loiter_time = 0;
// this is the delay, stored in seconds
loiter_time_max = abs(cmd.p1);
loiter_time_max = cmd.p1;
// Set wp navigation target
auto_wp_start(local_pos);
@ -440,7 +440,7 @@ void Copter::do_spline_wp(const AP_Mission::Mission_Command& cmd) @@ -440,7 +440,7 @@ void Copter::do_spline_wp(const AP_Mission::Mission_Command& cmd)
// this will be used to remember the time in millis after we reach or pass the WP.
loiter_time = 0;
// this is the delay, stored in seconds
loiter_time_max = abs(cmd.p1);
loiter_time_max = cmd.p1;
// determine segment start and end type
bool stopped_at_start = true;

Loading…
Cancel
Save