ardupilot/libraries/AP_Limits/AP_Limit_Altitude.h

38 lines
979 B
C
Raw Normal View History

2013-05-29 20:52:00 -03:00
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/// @file limits.h
/// @brief Imposes limits on location (geofence), altitude and other parameters.
/// Each limit breach will trigger an action or set of actions to recover. Adapted from geofence.
/// @author Andrew Tridgell
/// Andreas Antonopoulos
#ifndef __AP_LIMIT_ALTITUDE_H__
#define __AP_LIMIT_ALTITUDE_H__
#include "AP_Limits.h"
#include "AP_Limit_Module.h"
#include <AP_Param.h>
class AP_Limit_Altitude : public AP_Limit_Module {
public:
AP_Limit_Altitude(const struct Location *current_loc);
AP_Int32 min_alt();
AP_Int32 max_alt();
bool init();
bool triggered();
static const struct AP_Param::GroupInfo var_info[];
protected:
const struct Location * _current_loc;
AP_Int32 _min_alt;
AP_Int32 _max_alt;
};
#endif // __AP_LIMIT_ALTITUDE_H__