Browse Source

Rover: params always use set method

apm_2208
Iampete1 3 years ago committed by Peter Hall
parent
commit
3614a8e634
  1. 6
      Rover/motor_test.cpp

6
Rover/motor_test.cpp

@ -130,9 +130,9 @@ MAV_RESULT Rover::mavlink_motor_test_start(const GCS_MAVLINK &gcs_chan, AP_Motor
} }
// disable failsafes // disable failsafes
g.fs_gcs_enabled = 0; g.fs_gcs_enabled.set(0);
g.fs_throttle_enabled = 0; g.fs_throttle_enabled.set(0);
g.fs_crash_check = 0; g.fs_crash_check.set(0);
// turn on notify leds // turn on notify leds
AP_Notify::flags.esc_calibration = true; AP_Notify::flags.esc_calibration = true;

Loading…
Cancel
Save