2022-01-23 18:16:11 -04:00
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
|
|
|
|
// weather vane class
|
|
|
|
class AC_WeatherVane {
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
AC_WeatherVane(void);
|
|
|
|
|
|
|
|
CLASS_NO_COPY(AC_WeatherVane);
|
|
|
|
|
|
|
|
// Calculate and return the yaw output to weathervane the vehicle
|
2022-04-11 19:17:12 -03:00
|
|
|
bool get_yaw_out(float &yaw_output, const int16_t pilot_yaw, const float hgt, const float roll_cdeg, const float pitch_cdeg, const bool is_takeoff, const bool is_landing);
|
2022-01-23 18:16:11 -04:00
|
|
|
|
|
|
|
// Function to reset all flags and set values. Invoked whenever the weather vaning process is interrupted
|
|
|
|
void reset(void);
|
|
|
|
|
|
|
|
// allow/disallow weather vaning from other means than by the parameter
|
|
|
|
void allow_weathervaning(bool allow) { allowed = allow; }
|
|
|
|
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Different options for the direction that vehicle will turn into wind
|
|
|
|
enum class Direction {
|
2023-02-27 09:38:37 -04:00
|
|
|
TAKEOFF_OR_LAND_ONLY = -1,
|
2022-01-23 18:16:11 -04:00
|
|
|
OFF = 0,
|
|
|
|
NOSE_IN = 1, // Only nose into wind
|
|
|
|
NOSE_OR_TAIL_IN = 2, // Nose in or tail into wind, which ever is closest
|
|
|
|
SIDE_IN = 3, // Side into wind for copter tailsitters
|
2022-01-23 18:22:41 -04:00
|
|
|
TAIL_IN = 4, // backwards, for tailsitters, makes it easier to descend
|
2022-01-23 18:16:11 -04:00
|
|
|
};
|
|
|
|
|
2022-04-11 19:13:06 -03:00
|
|
|
enum class Options {
|
|
|
|
PITCH_ENABLE = (1<<0),
|
|
|
|
};
|
|
|
|
|
2023-10-11 04:41:49 -03:00
|
|
|
// Parameters
|
2022-01-23 18:16:11 -04:00
|
|
|
AP_Int8 _direction;
|
|
|
|
AP_Float _gain;
|
|
|
|
AP_Float _min_dz_ang_deg;
|
|
|
|
AP_Float _min_height;
|
|
|
|
AP_Float _max_vel_xy;
|
|
|
|
AP_Float _max_vel_z;
|
2022-01-23 18:23:37 -04:00
|
|
|
AP_Int8 _landing_direction;
|
|
|
|
AP_Int8 _takeoff_direction;
|
2022-04-11 19:13:06 -03:00
|
|
|
AP_Int16 _options;
|
2022-01-23 18:16:11 -04:00
|
|
|
|
|
|
|
float last_output;
|
|
|
|
bool active_msg_sent;
|
|
|
|
uint32_t first_activate_ms;
|
|
|
|
uint32_t last_check_ms;
|
|
|
|
|
|
|
|
// Init to true here to avoid a race between init of RC_channel and weathervane
|
|
|
|
bool allowed = true;
|
|
|
|
};
|