ardupilot/ArduSub/AP_Arming_Sub.h

20 lines
471 B
C
Raw Normal View History

2017-02-27 17:12:56 -04:00
#pragma once
#include <AP_Arming/AP_Arming.h>
class AP_Arming_Sub : public AP_Arming {
public:
2018-06-25 02:26:41 -03:00
AP_Arming_Sub() : AP_Arming() { }
2017-02-27 17:12:56 -04:00
/* Do not allow copies */
AP_Arming_Sub(const AP_Arming_Sub &other) = delete;
AP_Arming_Sub &operator=(const AP_Arming_Sub&) = delete;
bool rc_calibration_checks(bool display_failure) override;
bool pre_arm_checks(bool display_failure) override;
2017-02-27 17:12:56 -04:00
protected:
bool ins_checks(bool display_failure) override;
2017-02-27 17:12:56 -04:00
};