mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 23:18:28 -04:00
482ae876fb
See discussion here: https://github.com/ArduPilot/ardupilot/issues/7331 we were getting some uninitialised variables. While it only showed up in AP_SbusOut, it means we can't be sure it won't happen on other objects, so safest to remove the approach Thanks to assistance from Lucas, Peter and Francisco
28 lines
707 B
C++
28 lines
707 B
C++
#pragma once
|
|
|
|
#include <AP_Arming/AP_Arming.h>
|
|
|
|
/*
|
|
a rover-specific arming class
|
|
*/
|
|
class AP_Arming_Rover : public AP_Arming
|
|
{
|
|
public:
|
|
AP_Arming_Rover(const AP_AHRS &ahrs_ref, const AP_Baro &baro, Compass &compass,
|
|
const AP_BattMonitor &battery)
|
|
: AP_Arming(ahrs_ref, baro, compass, battery)
|
|
{
|
|
}
|
|
|
|
/* Do not allow copies */
|
|
AP_Arming_Rover(const AP_Arming_Rover &other) = delete;
|
|
AP_Arming_Rover &operator=(const AP_Baro&) = delete;
|
|
|
|
bool pre_arm_checks(bool report) override;
|
|
bool pre_arm_rc_checks(const bool display_failure);
|
|
bool gps_checks(bool display_failure) override;
|
|
|
|
protected:
|
|
enum HomeState home_status() const override;
|
|
};
|