mirror of https://github.com/ArduPilot/ardupilot
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
|
/*
|
||
|
Scripting mount/gimbal driver
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "AP_Mount_Backend.h"
|
||
|
|
||
|
#if HAL_MOUNT_SCRIPTING_ENABLED
|
||
|
|
||
|
#include <AP_HAL/AP_HAL.h>
|
||
|
#include <AP_Math/AP_Math.h>
|
||
|
#include <AP_Common/AP_Common.h>
|
||
|
|
||
|
class AP_Mount_Scripting : public AP_Mount_Backend
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
// Constructor
|
||
|
using AP_Mount_Backend::AP_Mount_Backend;
|
||
|
|
||
|
/* Do not allow copies */
|
||
|
CLASS_NO_COPY(AP_Mount_Scripting);
|
||
|
|
||
|
// update mount position - should be called periodically
|
||
|
void update() override;
|
||
|
|
||
|
// return true if healthy
|
||
|
bool healthy() const override;
|
||
|
|
||
|
// has_pan_control - returns true if this mount can control its pan (required for multicopters)
|
||
|
bool has_pan_control() const override { return yaw_range_valid(); };
|
||
|
|
||
|
// accessors for scripting backends
|
||
|
bool get_location_target(Location& _target_loc) override;
|
||
|
void set_attitude_euler(float roll_deg, float pitch_deg, float yaw_bf_deg) override;
|
||
|
|
||
|
protected:
|
||
|
|
||
|
// get attitude as a quaternion. returns true on success
|
||
|
bool get_attitude_quaternion(Quaternion& att_quat) override;
|
||
|
|
||
|
private:
|
||
|
|
||
|
// internal variables
|
||
|
uint32_t last_update_ms; // system time of last call to one of the get_ methods. Used for health reporting
|
||
|
Vector3f current_angle_deg; // current gimbal angles in degrees (x=roll, y=pitch, z=yaw)
|
||
|
|
||
|
Location target_loc; // target location
|
||
|
bool target_loc_valid; // true if target_loc holds a valid target location
|
||
|
};
|
||
|
|
||
|
#endif // HAL_MOUNT_SIYISERIAL_ENABLED
|