2013-05-29 20:51:34 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2012-04-02 05:26:37 -03:00
|
|
|
|
|
|
|
/// @file AP_MotorsQuad.h
|
|
|
|
/// @brief Motor control class for Quadcopters
|
|
|
|
|
2012-10-26 20:59:07 -03:00
|
|
|
#ifndef __AP_MOTORS_QUAD_H__
|
|
|
|
#define __AP_MOTORS_QUAD_H__
|
2012-04-02 05:26:37 -03:00
|
|
|
|
|
|
|
#include <AP_Common.h>
|
|
|
|
#include <AP_Math.h> // ArduPilot Mega Vector/Matrix math Library
|
|
|
|
#include <RC_Channel.h> // RC Channel Library
|
2012-10-26 20:59:07 -03:00
|
|
|
#include "AP_MotorsMatrix.h" // Parent Motors Matrix library
|
2012-04-02 05:26:37 -03:00
|
|
|
|
2012-08-17 03:20:26 -03:00
|
|
|
/// @class AP_MotorsQuad
|
2012-04-02 05:26:37 -03:00
|
|
|
class AP_MotorsQuad : public AP_MotorsMatrix {
|
2012-08-17 03:20:26 -03:00
|
|
|
public:
|
2012-04-02 05:26:37 -03:00
|
|
|
|
2012-08-17 03:20:26 -03:00
|
|
|
/// Constructor
|
2015-05-14 22:00:46 -03:00
|
|
|
AP_MotorsQuad(uint16_t loop_rate, uint16_t speed_hz = AP_MOTORS_SPEED_DEFAULT) :
|
|
|
|
AP_MotorsMatrix(loop_rate, speed_hz)
|
|
|
|
{ };
|
2012-04-02 05:26:37 -03:00
|
|
|
|
2012-08-17 03:20:26 -03:00
|
|
|
// setup_motors - configures the motors for a quad
|
|
|
|
virtual void setup_motors();
|
2012-04-02 05:26:37 -03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2012-08-17 03:20:26 -03:00
|
|
|
};
|
2012-04-02 05:26:37 -03:00
|
|
|
|
2012-10-26 20:59:07 -03:00
|
|
|
#endif // AP_MOTORSQUAD
|