// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- /// @file AP_MotorsY6.h /// @brief Motor control class for Y6 frames #ifndef __AP_MOTORS_Y6_H__ #define __AP_MOTORS_Y6_H__ #include #include // ArduPilot Mega Vector/Matrix math Library #include // RC Channel Library #include // Parent Motors Matrix library #define AP_MOTORS_Y6_YAW_DIRECTION 1 // this really should be a user selectable parameter /// @class AP_MotorsY6 class AP_MotorsY6 : public AP_MotorsMatrix { public: /// Constructor AP_MotorsY6(uint16_t loop_rate, uint16_t speed_hz = AP_MOTORS_SPEED_DEFAULT) : AP_MotorsMatrix(loop_rate, speed_hz) { }; // setup_motors - configures the motors for a Y6 virtual void setup_motors(); protected: }; #endif // AP_MOTORSY6