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-11-12 23:18:14 -04:00
|
|
|
#include <APM_RC.h>
|
2010-11-28 03:03:23 -04:00
|
|
|
|
|
|
|
/// @class RC_Channel
|
|
|
|
/// @brief Object managing one RC channel
|
|
|
|
class RC_Channel{
|
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
|
|
|
///
|
2012-02-12 05:26:44 -04:00
|
|
|
RC_Channel() :
|
|
|
|
radio_min (1100),
|
|
|
|
radio_trim(1500),
|
|
|
|
radio_max (1900),
|
2012-02-29 09:44:29 -04:00
|
|
|
scale_output(1.0),
|
2012-02-12 05:26:44 -04:00
|
|
|
_filter(false),
|
|
|
|
_reverse(1),
|
|
|
|
_dead_zone(0),
|
2012-02-29 09:44:29 -04:00
|
|
|
_high(1) {}
|
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);
|
2012-05-31 18:59:03 -03:00
|
|
|
void set_range_out(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);
|
2011-09-27 02:12:39 -03:00
|
|
|
void set_dead_zone(int dzone);
|
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;
|
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-11-12 23:18:14 -04:00
|
|
|
static void set_apm_rc(APM_RC_Class * apm_rc);
|
|
|
|
static APM_RC_Class *_apm_rc;
|
2011-02-14 00:43:44 -04:00
|
|
|
|
2012-02-11 07:54:21 -04:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
2010-11-23 15:28:19 -04:00
|
|
|
|
2012-02-11 07:54:21 -04:00
|
|
|
private:
|
|
|
|
bool _filter;
|
2012-02-12 05:26:44 -04:00
|
|
|
AP_Int8 _reverse;
|
|
|
|
AP_Int16 _dead_zone;
|
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;
|
2012-05-31 18:59:03 -03:00
|
|
|
int16_t _high_out;
|
|
|
|
int16_t _low_out;
|
2010-11-23 15:28:19 -04:00
|
|
|
};
|
|
|
|
|
2011-09-11 19:02:47 -03:00
|
|
|
// This is ugly, but it fixes compilation on arduino
|
2011-09-11 18:25:06 -03:00
|
|
|
#include "RC_Channel_aux.h"
|
|
|
|
|
2011-02-14 00:43:44 -04:00
|
|
|
#endif
|