ardupilot/Rover/afs_rover.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.4 KiB
C
Raw Normal View History

2017-01-30 10:21:55 -04:00
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/*
advanced failsafe support for rover
*/
2024-08-04 21:54:28 -03:00
#if AP_ROVER_ADVANCED_FAILSAFE_ENABLED
2017-01-30 10:21:55 -04:00
#include <AP_AdvancedFailsafe/AP_AdvancedFailsafe.h>
/*
a rover specific AP_AdvancedFailsafe class
*/
class AP_AdvancedFailsafe_Rover : public AP_AdvancedFailsafe
{
public:
using AP_AdvancedFailsafe::AP_AdvancedFailsafe;
2017-01-30 10:21:55 -04:00
// called to set all outputs to termination state
2017-07-19 01:34:04 -03:00
void terminate_vehicle(void) override;
2017-01-30 10:21:55 -04:00
protected:
2017-07-19 01:34:04 -03:00
// setup failsafe values - this is handled by motors library
void setup_IO_failsafe(void) override {}
2017-01-30 10:21:55 -04:00
// return the AFS mapped control mode
2017-07-19 01:34:04 -03:00
enum control_mode afs_mode(void) override;
//to force entering auto mode when datalink loss
void set_mode_auto(void) override;
2017-01-30 10:21:55 -04:00
};
#endif // ADVANCED_FAILSAFE