2010-11-28 03:03:23 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
|
|
|
|
/// @file RC_Channel.h
|
|
|
|
/// @brief RC_Channel manager, with EEPROM-backed storage of constants.
|
2010-11-23 15:28:19 -04:00
|
|
|
|
|
|
|
#ifndef RC_Channel_h
|
|
|
|
#define RC_Channel_h
|
|
|
|
|
2011-02-14 00:43:44 -04:00
|
|
|
#include <AP_Common.h>
|
2011-09-09 11:18:38 -03:00
|
|
|
// TODO is this include really necessary ?
|
2010-11-28 03:03:23 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
/// @class RC_Channel
|
|
|
|
/// @brief Object managing one RC channel
|
|
|
|
class RC_Channel{
|
2011-09-09 11:18:38 -03:00
|
|
|
protected:
|
2011-05-02 02:56:21 -03:00
|
|
|
AP_Var_group _group; // must be before all vars to keep ctor init order correct
|
|
|
|
|
2011-02-14 00:43:44 -04:00
|
|
|
public:
|
2010-11-28 03:03:23 -04:00
|
|
|
/// Constructor
|
|
|
|
///
|
2011-02-14 00:43:44 -04:00
|
|
|
/// @param key EEPROM storage key for the channel trim parameters.
|
|
|
|
/// @param name Optional name for the group.
|
2010-11-28 03:03:23 -04:00
|
|
|
///
|
2011-03-21 04:25:48 -03:00
|
|
|
RC_Channel(AP_Var::Key key, const prog_char_t *name) :
|
2011-02-14 00:43:44 -04:00
|
|
|
_group(key, name),
|
2011-02-14 13:43:33 -04:00
|
|
|
radio_min (&_group, 0, 1500, name ? PSTR("MIN") : 0), // suppress name if group has no name
|
|
|
|
radio_trim(&_group, 1, 1500, name ? PSTR("TRIM") : 0),
|
|
|
|
radio_max (&_group, 2, 1500, name ? PSTR("MAX") : 0),
|
2010-11-28 03:03:23 -04:00
|
|
|
_high(1),
|
2010-12-25 21:17:04 -04:00
|
|
|
_filter(true),
|
2011-06-10 00:33:31 -03:00
|
|
|
_reverse (&_group, 3, 1, name ? PSTR("REV") : 0),
|
2011-01-17 00:05:48 -04:00
|
|
|
dead_zone(0),
|
|
|
|
scale_output(1.0)
|
2010-11-28 03:03:23 -04:00
|
|
|
{}
|
|
|
|
|
|
|
|
// setup min and max radio values in CLI
|
2010-11-25 03:10:06 -04:00
|
|
|
void update_min_max();
|
2010-12-25 21:17:04 -04:00
|
|
|
void zero_min_max();
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-11-23 15:28:19 -04:00
|
|
|
// startup
|
2010-11-28 03:03:23 -04:00
|
|
|
void load_eeprom(void);
|
2011-02-14 00:43:44 -04:00
|
|
|
void save_eeprom(void);
|
|
|
|
void save_trim(void);
|
2010-11-28 03:03:23 -04:00
|
|
|
void set_filter(bool filter);
|
2011-05-05 14:46:11 -03:00
|
|
|
void set_type(uint8_t t);
|
2010-11-23 15:28:19 -04:00
|
|
|
|
|
|
|
// setup the control preferences
|
2010-11-23 17:20:29 -04:00
|
|
|
void set_range(int low, int high);
|
2010-11-23 15:28:19 -04:00
|
|
|
void set_angle(int angle);
|
2010-12-20 23:53:26 -04:00
|
|
|
void set_reverse(bool reverse);
|
2011-01-27 14:16:22 -04:00
|
|
|
bool get_reverse(void);
|
2010-11-23 15:28:19 -04:00
|
|
|
|
|
|
|
// read input from APM_RC - create a control_in value
|
|
|
|
void set_pwm(int pwm);
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-11-25 03:10:06 -04:00
|
|
|
// pwm is stored here
|
|
|
|
int16_t radio_in;
|
|
|
|
|
|
|
|
// call after first set_pwm
|
|
|
|
void trim();
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-11-23 15:28:19 -04:00
|
|
|
// did our read come in 50µs below the min?
|
2010-11-28 03:03:23 -04:00
|
|
|
bool get_failsafe(void);
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-11-23 15:28:19 -04:00
|
|
|
// value generated from PWM
|
|
|
|
int16_t control_in;
|
2010-11-28 21:44:40 -04:00
|
|
|
int16_t dead_zone; // used to keep noise down and create a dead zone.
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-11-26 23:04:30 -04:00
|
|
|
int control_mix(float value);
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-11-23 15:28:19 -04:00
|
|
|
// current values to the servos - degrees * 100 (approx assuming servo is -45 to 45 degrees except [3] is 0 to 100
|
|
|
|
int16_t servo_out;
|
|
|
|
|
|
|
|
// generate PWM from servo_out value
|
|
|
|
void calc_pwm(void);
|
|
|
|
|
|
|
|
// PWM is without the offset from radio_min
|
|
|
|
int16_t pwm_out;
|
|
|
|
int16_t radio_out;
|
2010-11-25 03:10:06 -04:00
|
|
|
|
2011-02-14 00:43:44 -04:00
|
|
|
AP_Int16 radio_min;
|
|
|
|
AP_Int16 radio_trim;
|
|
|
|
AP_Int16 radio_max;
|
|
|
|
|
2010-11-23 15:28:19 -04:00
|
|
|
// includes offset from PWM
|
|
|
|
//int16_t get_radio_out(void);
|
2010-12-13 00:08:22 -04:00
|
|
|
|
2010-11-23 15:28:19 -04:00
|
|
|
int16_t pwm_to_angle();
|
2010-12-20 23:53:26 -04:00
|
|
|
float norm_input();
|
|
|
|
float norm_output();
|
2010-11-23 15:28:19 -04:00
|
|
|
int16_t angle_to_pwm();
|
|
|
|
int16_t pwm_to_range();
|
|
|
|
int16_t range_to_pwm();
|
2010-12-25 21:17:04 -04:00
|
|
|
|
|
|
|
float scale_output;
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2010-12-13 00:08:22 -04:00
|
|
|
private:
|
|
|
|
bool _filter;
|
2011-06-10 00:33:31 -03:00
|
|
|
AP_Int8 _reverse;
|
2010-11-23 15:28:19 -04:00
|
|
|
|
2011-05-06 14:51:26 -03:00
|
|
|
uint8_t _type;
|
2010-11-23 15:28:19 -04:00
|
|
|
int16_t _high;
|
|
|
|
int16_t _low;
|
|
|
|
};
|
|
|
|
|
2011-09-09 11:18:38 -03:00
|
|
|
/// @class RC_Channel_aux
|
|
|
|
/// @brief Object managing one aux. RC channel (CH5-8), with information about its function
|
2011-09-10 18:57:27 -03:00
|
|
|
/// Also contains physical min,max angular deflection, to allow calibrating open-loop servo movements
|
2011-09-09 11:18:38 -03:00
|
|
|
class RC_Channel_aux : public RC_Channel{
|
|
|
|
public:
|
|
|
|
/// Constructor
|
|
|
|
///
|
|
|
|
/// @param key EEPROM storage key for the channel trim parameters.
|
|
|
|
/// @param name Optional name for the group.
|
|
|
|
///
|
|
|
|
RC_Channel_aux(AP_Var::Key key, const prog_char_t *name) :
|
|
|
|
RC_Channel(key, name),
|
|
|
|
function (&_group, 4, k_none, name ? PSTR("FUNCTION") : 0), // suppress name if group has no name
|
|
|
|
angle_min (&_group, 5, -4500, name ? PSTR("ANGLE_MIN") : 0), // assume -45 degrees min deflection
|
|
|
|
angle_max (&_group, 6, 4500, name ? PSTR("ANGLE_MAX") : 0) // assume 45 degrees max deflection
|
|
|
|
{}
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2011-09-10 21:34:47 -03:00
|
|
|
k_none = 0, // disabled
|
|
|
|
k_manual = 1, // manual, just pass-thru the RC in signal
|
|
|
|
k_flap = 2, // flap
|
|
|
|
k_flap_auto = 3, // flap automated
|
|
|
|
k_aileron = 4, // aileron
|
|
|
|
k_flaperon = 5, // flaperon (flaps and aileron combined, needs two independent servos one for each wing)
|
|
|
|
k_mount_yaw = 6, // mount yaw (pan)
|
|
|
|
k_mount_pitch = 7, // mount pitch (tilt)
|
|
|
|
k_mount_roll = 8, // mount roll
|
|
|
|
k_cam_trigger = 9, // camera trigger
|
|
|
|
k_cam_open = 10, // camera open
|
|
|
|
k_egg_drop = 11, // egg drop
|
2011-09-09 11:18:38 -03:00
|
|
|
k_nr_aux_servo_functions // This must be the last enum value (only add new values _before_ this one)
|
|
|
|
} Aux_servo_function_t;
|
|
|
|
|
2011-09-10 18:57:27 -03:00
|
|
|
// TODO It would be great if the "packed" attribute could be added to this somehow
|
|
|
|
// It would probably save some memory. But it can only be added to enums and not to typedefs :(
|
2011-09-09 11:18:38 -03:00
|
|
|
AP_VARDEF(Aux_servo_function_t, Aux_srv_func); // defines AP_Aux_srv_func
|
|
|
|
|
2011-09-10 21:34:47 -03:00
|
|
|
AP_Aux_srv_func function; // 0=disabled, 1=manual, 2=flap, 3=flap auto, 4=aileron, 5=flaperon, 6=mount yaw (pan), 7=mount pitch (tilt), 8=mount roll, 9=camera trigger, 10=camera open, 11=egg drop
|
2011-09-09 11:18:38 -03:00
|
|
|
AP_Int16 angle_min; // min angle limit of actuated surface in 0.01 degree units
|
|
|
|
AP_Int16 angle_max; // max angle limit of actuated surface in 0.01 degree units
|
|
|
|
|
|
|
|
int16_t closest_limit(int16_t angle); // saturate to the closest angle limit if outside of min max angle interval
|
2011-09-10 08:26:29 -03:00
|
|
|
|
|
|
|
void output_ch(unsigned char ch_nr); // map a function to a servo channel and output it
|
|
|
|
|
2011-09-09 11:18:38 -03:00
|
|
|
};
|
|
|
|
|
2011-02-14 00:43:44 -04:00
|
|
|
#endif
|
2010-11-23 15:28:19 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|