2011-09-11 14:13:01 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
|
|
|
|
/// @file RC_Channel_aux.h
|
2012-06-13 15:55:19 -03:00
|
|
|
/// @brief RC_Channel manager for auxiliary channels (5..8), with EEPROM-backed storage of constants.
|
2011-09-11 14:13:01 -03:00
|
|
|
/// @author Amilcar Lucas
|
2012-06-13 15:55:19 -03:00
|
|
|
/// @author Gregory Fletcher
|
2011-09-11 14:13:01 -03:00
|
|
|
|
|
|
|
#ifndef RC_CHANNEL_AUX_H_
|
|
|
|
#define RC_CHANNEL_AUX_H_
|
|
|
|
|
|
|
|
#include "RC_Channel.h"
|
|
|
|
|
2011-09-11 19:02:47 -03:00
|
|
|
// Macro to simplify accessing the auxiliary servos
|
|
|
|
#define G_RC_AUX(_t) if (g_rc_function[RC_Channel_aux::_t]) g_rc_function[RC_Channel_aux::_t]
|
|
|
|
|
2011-09-11 14:13:01 -03:00
|
|
|
/// @class RC_Channel_aux
|
|
|
|
/// @brief Object managing one aux. RC channel (CH5-8), with information about its function
|
2011-10-31 18:55:58 -03:00
|
|
|
/// Also contains physical min,max angular deflection, to allow calibrating open-loop servo movements
|
2011-09-11 14:13:01 -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.
|
|
|
|
///
|
2012-02-11 07:54:21 -04:00
|
|
|
RC_Channel_aux() :
|
|
|
|
RC_Channel(),
|
|
|
|
function (0),
|
|
|
|
angle_min (-4500), // assume -45 degrees min deflection
|
|
|
|
angle_max (4500) // assume 45 degrees max deflection
|
2011-09-11 14:13:01 -03:00
|
|
|
{}
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2012-06-17 17:53:54 -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_mount_open = 9, ///< mount open (deploy) / close (retract)
|
|
|
|
k_cam_trigger = 10, ///< camera trigger
|
|
|
|
k_egg_drop = 11, ///< egg drop
|
|
|
|
k_nr_aux_servo_functions ///< This must be the last enum value (only add new values _before_ this one)
|
2011-09-11 14:13:01 -03:00
|
|
|
} Aux_servo_function_t;
|
|
|
|
|
2012-06-17 17:53:54 -03:00
|
|
|
AP_Int8 function; ///< see Aux_servo_function_t enum
|
|
|
|
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
|
2011-10-31 18:55:58 -03:00
|
|
|
|
2012-06-17 17:53:54 -03:00
|
|
|
int16_t closest_limit(int16_t angle);
|
2011-09-11 14:13:01 -03:00
|
|
|
|
2012-06-13 15:55:19 -03:00
|
|
|
void rc_input(float *control_angle, int16_t angle);
|
|
|
|
|
2012-07-17 21:12:31 -03:00
|
|
|
int32_t angle_input();
|
2012-07-10 18:59:33 -03:00
|
|
|
|
|
|
|
float angle_input_rad();
|
|
|
|
|
2012-07-15 04:28:53 -03:00
|
|
|
void enable_out_ch(unsigned char ch_nr);
|
|
|
|
|
2012-06-17 17:53:54 -03:00
|
|
|
void output_ch(unsigned char ch_nr);
|
2011-09-11 14:13:01 -03:00
|
|
|
|
2012-06-13 15:55:19 -03:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
2011-09-11 14:13:01 -03:00
|
|
|
};
|
|
|
|
|
2012-07-18 16:46:14 -03:00
|
|
|
void update_aux_servo_function(RC_Channel_aux* rc_a = NULL, RC_Channel_aux* rc_b = NULL, RC_Channel_aux* rc_c = NULL, RC_Channel_aux* rc_d = NULL, RC_Channel_aux* rc_e = NULL, RC_Channel_aux* rc_f = NULL, RC_Channel_aux* rc_g = NULL);
|
2011-10-29 04:42:18 -03:00
|
|
|
extern RC_Channel_aux* g_rc_function[RC_Channel_aux::k_nr_aux_servo_functions]; // the aux. servo ch. assigned to each function
|
2011-09-11 18:07:30 -03:00
|
|
|
|
2011-09-11 14:13:01 -03:00
|
|
|
#endif /* RC_CHANNEL_AUX_H_ */
|