2017-07-06 00:07:12 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "defines.h"
|
|
|
|
#include "AP_Arming.h"
|
2017-07-06 00:23:42 -03:00
|
|
|
#include <AP_ServoRelayEvents/AP_ServoRelayEvents.h>
|
2017-07-06 00:07:12 -03:00
|
|
|
|
|
|
|
class AP_MotorsUGV {
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor
|
2017-07-06 00:23:42 -03:00
|
|
|
AP_MotorsUGV(AP_ServoRelayEvents &relayEvents);
|
2017-07-06 00:07:12 -03:00
|
|
|
|
|
|
|
enum pwm_type {
|
|
|
|
PWM_TYPE_NORMAL = 0,
|
|
|
|
PWM_TYPE_ONESHOT = 1,
|
|
|
|
PWM_TYPE_ONESHOT125 = 2,
|
2017-08-21 21:24:34 -03:00
|
|
|
PWM_TYPE_BRUSHED_WITH_RELAY = 3,
|
|
|
|
PWM_TYPE_BRUSHED_BIPOLAR = 4,
|
2017-07-06 00:07:12 -03:00
|
|
|
};
|
|
|
|
|
2017-07-14 23:57:38 -03:00
|
|
|
enum motor_test_order {
|
2017-07-17 04:41:10 -03:00
|
|
|
MOTOR_TEST_THROTTLE = 1,
|
|
|
|
MOTOR_TEST_STEERING = 2,
|
|
|
|
MOTOR_TEST_THROTTLE_LEFT = 3,
|
|
|
|
MOTOR_TEST_THROTTLE_RIGHT = 4,
|
2017-07-14 23:57:38 -03:00
|
|
|
};
|
|
|
|
|
2017-07-06 00:07:12 -03:00
|
|
|
// initialise motors
|
|
|
|
void init();
|
|
|
|
|
|
|
|
// setup output in case of main CPU failure
|
|
|
|
void setup_safety_output();
|
|
|
|
|
2017-08-15 22:00:40 -03:00
|
|
|
// setup servo output ranges
|
2017-07-06 07:01:53 -03:00
|
|
|
void setup_servo_output();
|
|
|
|
|
2017-08-15 22:31:49 -03:00
|
|
|
// get or set steering as a value from -4500 to +4500
|
2017-07-06 00:07:12 -03:00
|
|
|
float get_steering() const { return _steering; }
|
2017-08-15 22:31:49 -03:00
|
|
|
void set_steering(float steering);
|
2017-07-06 00:07:12 -03:00
|
|
|
|
2017-08-15 22:31:49 -03:00
|
|
|
// get or set throttle as a value from -100 to 100
|
2017-07-06 00:07:12 -03:00
|
|
|
float get_throttle() const { return _throttle; }
|
2017-08-15 22:31:49 -03:00
|
|
|
void set_throttle(float throttle);
|
2017-07-06 00:07:12 -03:00
|
|
|
|
|
|
|
// true if vehicle is capable of skid steering
|
|
|
|
bool have_skid_steering() const;
|
|
|
|
|
|
|
|
// output to motors and steering servos
|
|
|
|
void output(bool armed, float dt);
|
|
|
|
|
2017-07-15 04:21:13 -03:00
|
|
|
// test steering or throttle output as a percentage of the total (range -100 to +100)
|
|
|
|
// used in response to DO_MOTOR_TEST mavlink command
|
|
|
|
bool output_test_pct(motor_test_order motor_seq, float pct);
|
|
|
|
|
|
|
|
// test steering or throttle output using a pwm value
|
|
|
|
bool output_test_pwm(motor_test_order motor_seq, float pwm);
|
2017-07-14 23:57:38 -03:00
|
|
|
|
2017-12-09 02:54:22 -04:00
|
|
|
// returns true if checks pass, false if they fail. display_failure argument should be true to send text messages to GCS
|
|
|
|
bool pre_arm_check(bool report) const;
|
|
|
|
|
2017-08-09 04:20:44 -03:00
|
|
|
// structure for holding motor limit flags
|
|
|
|
struct AP_MotorsUGV_limit {
|
|
|
|
uint8_t steer_left : 1; // we have reached the steering controller's left most limit
|
|
|
|
uint8_t steer_right : 1; // we have reached the steering controller's right most limit
|
|
|
|
uint8_t throttle_lower : 1; // we have reached throttle's lower limit
|
|
|
|
uint8_t throttle_upper : 1; // we have reached throttle's upper limit
|
|
|
|
} limit;
|
|
|
|
|
2017-07-06 00:07:12 -03:00
|
|
|
// var_info for holding Parameter information
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// setup pwm output type
|
|
|
|
void setup_pwm_type();
|
|
|
|
|
|
|
|
// output to regular steering and throttle channels
|
|
|
|
void output_regular(bool armed, float steering, float throttle);
|
|
|
|
|
|
|
|
// output to skid steering channels
|
|
|
|
void output_skid_steering(bool armed, float steering, float throttle);
|
|
|
|
|
2017-07-12 05:31:56 -03:00
|
|
|
// output throttle (-100 ~ +100) to a throttle channel. Sets relays if required
|
|
|
|
void output_throttle(SRV_Channel::Aux_servo_function_t function, float throttle);
|
|
|
|
|
2017-07-06 00:07:12 -03:00
|
|
|
// slew limit throttle for one iteration
|
|
|
|
void slew_limit_throttle(float dt);
|
|
|
|
|
2017-08-09 04:20:44 -03:00
|
|
|
// set limits based on steering and throttle input
|
|
|
|
void set_limits_from_input(bool armed, float steering, float throttle);
|
|
|
|
|
2017-12-01 09:27:30 -04:00
|
|
|
// scale a throttle using the _thrust_curve_expo parameter. throttle should be in the range -100 to +100
|
|
|
|
float get_scaled_throttle(float throttle) const;
|
|
|
|
|
2017-07-06 00:23:42 -03:00
|
|
|
// external references
|
|
|
|
AP_ServoRelayEvents &_relayEvents;
|
|
|
|
|
2017-07-06 00:07:12 -03:00
|
|
|
// parameters
|
|
|
|
AP_Int8 _pwm_type; // PWM output type
|
|
|
|
AP_Int8 _pwm_freq; // PWM output freq for brushed motors
|
|
|
|
AP_Int8 _disarm_disable_pwm; // disable PWM output while disarmed
|
2017-11-27 02:18:04 -04:00
|
|
|
AP_Int16 _slew_rate; // slew rate expressed as a percentage / second
|
2017-08-15 22:31:49 -03:00
|
|
|
AP_Int8 _throttle_min; // throttle minimum percentage
|
|
|
|
AP_Int8 _throttle_max; // throttle maximum percentage
|
2017-12-01 09:27:30 -04:00
|
|
|
AP_Float _thrust_curve_expo; // thrust curve exponent from -1 to +1 with 0 being linear
|
2017-07-06 00:07:12 -03:00
|
|
|
|
|
|
|
// internal variables
|
|
|
|
float _steering; // requested steering as a value from -4500 to +4500
|
2017-08-15 23:42:28 -03:00
|
|
|
float _throttle; // requested throttle as a value from -100 to 100
|
2017-11-21 20:43:30 -04:00
|
|
|
float _throttle_prev; // throttle input from previous iteration
|
2017-07-06 00:07:12 -03:00
|
|
|
};
|