2012-08-04 19:12:36 -03:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 PX4 Development Team. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/**
|
2012-12-29 16:58:41 -04:00
|
|
|
* @file mixer.cpp
|
2012-11-07 18:56:03 -04:00
|
|
|
*
|
|
|
|
* Control channel input/output mixer and failsafe.
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2013-03-09 07:27:29 -04:00
|
|
|
#include <syslog.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdbool.h>
|
2012-11-05 04:55:22 -04:00
|
|
|
#include <string.h>
|
2012-12-16 10:31:44 -04:00
|
|
|
|
2012-11-02 03:42:36 -03:00
|
|
|
#include <drivers/drv_pwm_output.h>
|
2012-12-16 10:31:44 -04:00
|
|
|
#include <drivers/drv_hrt.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
#include <systemlib/mixer/mixer.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
extern "C" {
|
2012-12-30 05:17:19 -04:00
|
|
|
//#define DEBUG
|
2012-11-02 03:42:36 -03:00
|
|
|
#include "px4io.h"
|
2012-12-29 16:58:41 -04:00
|
|
|
}
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
/*
|
2012-12-15 18:28:03 -04:00
|
|
|
* Maximum interval in us before FMU signal is considered lost
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
2012-12-15 18:28:03 -04:00
|
|
|
#define FMU_INPUT_DROP_LIMIT_US 200000
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2013-01-05 17:13:12 -04:00
|
|
|
/* XXX need to move the RC_CHANNEL_FUNCTION out of rc_channels.h and into systemlib */
|
|
|
|
#define ROLL 0
|
|
|
|
#define PITCH 1
|
|
|
|
#define YAW 2
|
|
|
|
#define THROTTLE 3
|
2013-01-11 02:35:40 -04:00
|
|
|
#define OVERRIDE 4
|
2013-01-05 17:13:12 -04:00
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/* current servo arm/disarm state */
|
2013-01-14 05:11:29 -04:00
|
|
|
static bool mixer_servos_armed = false;
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
/* selected control values and count for mixing */
|
2013-01-13 22:57:27 -04:00
|
|
|
enum mixer_source {
|
2013-01-16 02:22:15 -04:00
|
|
|
MIX_NONE,
|
2013-01-13 22:57:27 -04:00
|
|
|
MIX_FMU,
|
|
|
|
MIX_OVERRIDE,
|
|
|
|
MIX_FAILSAFE
|
|
|
|
};
|
|
|
|
static mixer_source source;
|
2013-01-05 10:46:26 -04:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
static int mixer_callback(uintptr_t handle,
|
2012-12-29 20:01:24 -04:00
|
|
|
uint8_t control_group,
|
|
|
|
uint8_t control_index,
|
|
|
|
float &control);
|
2012-12-29 16:58:41 -04:00
|
|
|
|
|
|
|
static MixerGroup mixer_group(mixer_callback, 0);
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
void
|
|
|
|
mixer_tick(void)
|
2012-08-04 19:12:36 -03:00
|
|
|
{
|
2012-12-23 21:20:53 -04:00
|
|
|
/* check that we are receiving fresh data from the FMU */
|
2013-02-24 15:42:34 -04:00
|
|
|
if (hrt_elapsed_time(&system_state.fmu_data_received_time) > FMU_INPUT_DROP_LIMIT_US) {
|
2013-01-13 22:57:27 -04:00
|
|
|
|
2013-01-14 05:11:29 -04:00
|
|
|
/* too long without FMU input, time to go to failsafe */
|
2013-01-26 20:37:35 -04:00
|
|
|
if (r_status_flags & PX4IO_P_STATUS_FLAGS_FMU_OK) {
|
2013-03-09 06:03:06 -04:00
|
|
|
lowsyslog("AP RX timeout");
|
2013-01-26 20:37:35 -04:00
|
|
|
}
|
2013-01-26 02:58:33 -04:00
|
|
|
r_status_flags &= ~(PX4IO_P_STATUS_FLAGS_FMU_OK | PX4IO_P_STATUS_FLAGS_RAW_PWM);
|
2013-01-13 22:57:27 -04:00
|
|
|
r_status_alarms |= PX4IO_P_STATUS_ALARMS_FMU_LOST;
|
2013-02-24 19:31:40 -04:00
|
|
|
|
|
|
|
/* XXX this is questionable - vehicle may not make sense for direct control */
|
|
|
|
r_status_flags |= PX4IO_P_STATUS_FLAGS_OVERRIDE;
|
|
|
|
} else {
|
|
|
|
r_status_flags |= PX4IO_P_STATUS_FLAGS_FMU_OK;
|
2013-03-09 06:03:06 -04:00
|
|
|
r_status_alarms &= ~PX4IO_P_STATUS_ALARMS_FMU_LOST;
|
2012-12-23 21:20:53 -04:00
|
|
|
}
|
|
|
|
|
2013-01-16 02:22:15 -04:00
|
|
|
source = MIX_FAILSAFE;
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/*
|
2013-01-13 22:57:27 -04:00
|
|
|
* Decide which set of controls we're using.
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
2013-03-07 14:47:43 -04:00
|
|
|
if ((r_status_flags & PX4IO_P_STATUS_FLAGS_RAW_PWM) ||
|
|
|
|
!(r_status_flags & PX4IO_P_STATUS_FLAGS_MIXER_OK)) {
|
2013-01-15 04:41:13 -04:00
|
|
|
|
2013-03-07 14:47:43 -04:00
|
|
|
/* don't actually mix anything - we already have raw PWM values or
|
|
|
|
not a valid mixer. */
|
2013-01-16 02:22:15 -04:00
|
|
|
source = MIX_NONE;
|
2013-01-15 04:41:13 -04:00
|
|
|
|
2013-01-16 02:22:15 -04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
if (!(r_status_flags & PX4IO_P_STATUS_FLAGS_OVERRIDE) &&
|
|
|
|
(r_status_flags & PX4IO_P_STATUS_FLAGS_MIXER_OK)) {
|
2013-01-15 04:41:13 -04:00
|
|
|
|
|
|
|
/* mix from FMU controls */
|
|
|
|
source = MIX_FMU;
|
|
|
|
}
|
2013-01-16 02:22:15 -04:00
|
|
|
|
|
|
|
if ( (r_status_flags & PX4IO_P_STATUS_FLAGS_OVERRIDE) &&
|
2013-03-09 06:03:06 -04:00
|
|
|
(r_status_flags & PX4IO_P_STATUS_FLAGS_RC_OK) &&
|
|
|
|
(r_status_flags & PX4IO_P_STATUS_FLAGS_MIXER_OK)) {
|
2013-01-16 02:22:15 -04:00
|
|
|
|
|
|
|
/* if allowed, mix from RC inputs directly */
|
|
|
|
source = MIX_OVERRIDE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Run the mixers.
|
|
|
|
*/
|
2013-01-26 02:58:33 -04:00
|
|
|
if (source == MIX_FAILSAFE) {
|
|
|
|
|
|
|
|
/* copy failsafe values to the servo outputs */
|
|
|
|
for (unsigned i = 0; i < IO_SERVO_COUNT; i++)
|
|
|
|
r_page_servos[i] = r_page_servo_failsafe[i];
|
|
|
|
|
|
|
|
} else if (source != MIX_NONE) {
|
2013-01-16 02:22:15 -04:00
|
|
|
|
|
|
|
float outputs[IO_SERVO_COUNT];
|
|
|
|
unsigned mixed;
|
|
|
|
|
|
|
|
/* mix */
|
|
|
|
mixed = mixer_group.mix(&outputs[0], IO_SERVO_COUNT);
|
|
|
|
|
|
|
|
/* scale to PWM and update the servo outputs as required */
|
|
|
|
for (unsigned i = 0; i < mixed; i++) {
|
|
|
|
|
|
|
|
/* save actuator values for FMU readback */
|
|
|
|
r_page_actuators[i] = FLOAT_TO_REG(outputs[i]);
|
|
|
|
|
|
|
|
/* scale to servo output */
|
|
|
|
r_page_servos[i] = (outputs[i] * 500.0f) + 1500;
|
|
|
|
|
|
|
|
}
|
|
|
|
for (unsigned i = mixed; i < IO_SERVO_COUNT; i++)
|
|
|
|
r_page_servos[i] = 0;
|
2013-01-13 22:57:27 -04:00
|
|
|
}
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/*
|
|
|
|
* Decide whether the servos should be armed right now.
|
2013-01-16 02:22:15 -04:00
|
|
|
*
|
|
|
|
* We must be armed, and we must have a PWM source; either raw from
|
|
|
|
* FMU or from the mixer.
|
2013-01-26 02:58:33 -04:00
|
|
|
*
|
|
|
|
* XXX correct behaviour for failsafe may require an additional case
|
|
|
|
* here.
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
2013-03-06 15:37:01 -04:00
|
|
|
bool should_arm = (
|
|
|
|
/* FMU is armed */ (r_setup_arming & PX4IO_P_SETUP_ARMING_ARM_OK) &&
|
|
|
|
/* IO is armed */ (r_status_flags & PX4IO_P_STATUS_FLAGS_ARMED) &&
|
|
|
|
/* there is valid input */ (r_status_flags & (PX4IO_P_STATUS_FLAGS_RAW_PWM | PX4IO_P_STATUS_FLAGS_MIXER_OK)) &&
|
|
|
|
/* IO initialised without error */ (r_status_flags & PX4IO_P_STATUS_FLAGS_INIT_OK));
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
if (should_arm && !mixer_servos_armed) {
|
|
|
|
/* need to arm, but not armed */
|
2012-11-02 03:42:36 -03:00
|
|
|
up_pwm_servo_arm(true);
|
2012-08-04 19:12:36 -03:00
|
|
|
mixer_servos_armed = true;
|
|
|
|
|
|
|
|
} else if (!should_arm && mixer_servos_armed) {
|
2012-11-02 03:42:36 -03:00
|
|
|
/* armed but need to disarm */
|
|
|
|
up_pwm_servo_arm(false);
|
2012-08-04 19:12:36 -03:00
|
|
|
mixer_servos_armed = false;
|
|
|
|
}
|
2013-01-26 20:37:35 -04:00
|
|
|
|
|
|
|
if (mixer_servos_armed) {
|
|
|
|
/* update the servo outputs. */
|
|
|
|
for (unsigned i = 0; i < IO_SERVO_COUNT; i++)
|
|
|
|
up_pwm_servo_set(i, r_page_servos[i]);
|
|
|
|
}
|
2012-08-04 19:12:36 -03:00
|
|
|
}
|
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
static int
|
|
|
|
mixer_callback(uintptr_t handle,
|
|
|
|
uint8_t control_group,
|
|
|
|
uint8_t control_index,
|
|
|
|
float &control)
|
2012-08-04 19:12:36 -03:00
|
|
|
{
|
2013-01-13 22:57:27 -04:00
|
|
|
if (control_group != 0)
|
2012-12-29 16:58:41 -04:00
|
|
|
return -1;
|
|
|
|
|
2013-01-13 22:57:27 -04:00
|
|
|
switch (source) {
|
|
|
|
case MIX_FMU:
|
|
|
|
if (control_index < PX4IO_CONTROL_CHANNELS) {
|
|
|
|
control = REG_TO_FLOAT(r_page_controls[control_index]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
case MIX_OVERRIDE:
|
|
|
|
if (r_page_rc_input[PX4IO_P_RC_VALID] & (1 << control_index)) {
|
|
|
|
control = REG_TO_FLOAT(r_page_rc_input[PX4IO_P_RC_BASE + control_index]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
case MIX_FAILSAFE:
|
2013-01-16 02:22:15 -04:00
|
|
|
case MIX_NONE:
|
2013-01-13 22:57:27 -04:00
|
|
|
/* XXX we could allow for configuration of per-output failsafe values */
|
|
|
|
return -1;
|
2013-01-06 09:43:37 -04:00
|
|
|
}
|
2012-12-29 16:58:41 -04:00
|
|
|
|
|
|
|
return 0;
|
2012-11-05 04:55:22 -04:00
|
|
|
}
|
2012-12-29 16:58:41 -04:00
|
|
|
|
2013-01-16 03:01:04 -04:00
|
|
|
/*
|
|
|
|
* XXX error handling here should be more aggressive; currently it is
|
|
|
|
* possible to get STATUS_FLAGS_MIXER_OK set even though the mixer has
|
|
|
|
* not loaded faithfully.
|
|
|
|
*/
|
|
|
|
|
2013-01-13 22:57:27 -04:00
|
|
|
static char mixer_text[256]; /* large enough for one mixer */
|
2012-12-30 05:17:19 -04:00
|
|
|
static unsigned mixer_text_length = 0;
|
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
void
|
|
|
|
mixer_handle_text(const void *buffer, size_t length)
|
|
|
|
{
|
2013-03-07 14:47:43 -04:00
|
|
|
/* do not allow a mixer change while fully armed */
|
|
|
|
if (/* FMU is armed */ (r_setup_arming & PX4IO_P_SETUP_ARMING_ARM_OK) &&
|
|
|
|
/* IO is armed */ (r_status_flags & PX4IO_P_STATUS_FLAGS_ARMED)) {
|
|
|
|
return;
|
|
|
|
}
|
2012-12-29 16:58:41 -04:00
|
|
|
|
|
|
|
px4io_mixdata *msg = (px4io_mixdata *)buffer;
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2013-02-23 07:02:00 -04:00
|
|
|
isr_debug(2, "mix txt %u", length);
|
2012-12-30 05:17:19 -04:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
if (length < sizeof(px4io_mixdata))
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned text_length = length - sizeof(px4io_mixdata);
|
|
|
|
|
|
|
|
switch (msg->action) {
|
|
|
|
case F2I_MIXER_ACTION_RESET:
|
2013-02-20 07:19:03 -04:00
|
|
|
isr_debug(2, "reset");
|
2013-03-07 14:47:43 -04:00
|
|
|
|
|
|
|
/* FIRST mark the mixer as invalid */
|
|
|
|
r_status_flags &= ~PX4IO_P_STATUS_FLAGS_MIXER_OK;
|
|
|
|
/* THEN actually delete it */
|
2012-12-29 16:58:41 -04:00
|
|
|
mixer_group.reset();
|
|
|
|
mixer_text_length = 0;
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case F2I_MIXER_ACTION_APPEND:
|
2013-02-20 07:19:03 -04:00
|
|
|
isr_debug(2, "append %d", length);
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
/* check for overflow - this is really fatal */
|
2013-01-13 22:57:27 -04:00
|
|
|
/* XXX could add just what will fit & try to parse, then repeat... */
|
2013-01-16 02:22:15 -04:00
|
|
|
if ((mixer_text_length + text_length + 1) > sizeof(mixer_text)) {
|
|
|
|
r_status_flags &= ~PX4IO_P_STATUS_FLAGS_MIXER_OK;
|
2012-12-29 16:58:41 -04:00
|
|
|
return;
|
2013-01-16 02:22:15 -04:00
|
|
|
}
|
2012-12-29 16:58:41 -04:00
|
|
|
|
|
|
|
/* append mixer text and nul-terminate */
|
|
|
|
memcpy(&mixer_text[mixer_text_length], msg->text, text_length);
|
|
|
|
mixer_text_length += text_length;
|
|
|
|
mixer_text[mixer_text_length] = '\0';
|
2013-02-20 07:19:03 -04:00
|
|
|
isr_debug(2, "buflen %u", mixer_text_length);
|
2012-12-29 16:58:41 -04:00
|
|
|
|
|
|
|
/* process the text buffer, adding new mixers as their descriptions can be parsed */
|
2012-12-30 05:17:19 -04:00
|
|
|
unsigned resid = mixer_text_length;
|
|
|
|
mixer_group.load_from_buf(&mixer_text[0], resid);
|
2012-12-29 16:58:41 -04:00
|
|
|
|
2012-12-30 05:17:19 -04:00
|
|
|
/* if anything was parsed */
|
|
|
|
if (resid != mixer_text_length) {
|
2013-01-16 02:22:15 -04:00
|
|
|
|
|
|
|
/* ideally, this should test resid == 0 ? */
|
|
|
|
r_status_flags |= PX4IO_P_STATUS_FLAGS_MIXER_OK;
|
|
|
|
|
2013-02-20 07:19:03 -04:00
|
|
|
isr_debug(2, "used %u", mixer_text_length - resid);
|
2012-12-29 16:58:41 -04:00
|
|
|
|
2012-12-30 19:08:25 -04:00
|
|
|
/* copy any leftover text to the base of the buffer for re-use */
|
|
|
|
if (resid > 0)
|
|
|
|
memcpy(&mixer_text[0], &mixer_text[mixer_text_length - resid], resid);
|
2012-12-30 05:17:19 -04:00
|
|
|
|
2012-12-30 19:08:25 -04:00
|
|
|
mixer_text_length = resid;
|
2012-12-30 05:17:19 -04:00
|
|
|
}
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
break;
|
|
|
|
}
|
2012-11-05 04:55:22 -04:00
|
|
|
}
|