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-11-07 18:56:03 -04:00
|
|
|
* @file mixer.c
|
|
|
|
*
|
|
|
|
* Control channel input/output mixer and failsafe.
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdbool.h>
|
2012-11-05 04:55:22 -04:00
|
|
|
#include <string.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
2012-11-05 04:55:22 -04:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-12-16 10:31:44 -04:00
|
|
|
#include <debug.h>
|
|
|
|
|
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-11-02 03:42:36 -03:00
|
|
|
#include "px4io.h"
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* Update a mixer based on the current control signals.
|
|
|
|
*/
|
|
|
|
static void mixer_update(int mixer, uint16_t *inputs, int input_count);
|
|
|
|
|
|
|
|
/* current servo arm/disarm state */
|
2012-11-06 23:03:08 -04:00
|
|
|
bool mixer_servos_armed = false;
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Each mixer consumes a set of inputs and produces a single output.
|
|
|
|
*/
|
|
|
|
struct mixer {
|
|
|
|
uint16_t current_value;
|
|
|
|
/* XXX more config here */
|
|
|
|
} mixers[IO_SERVO_COUNT];
|
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
void
|
|
|
|
mixer_tick(void)
|
2012-08-04 19:12:36 -03:00
|
|
|
{
|
|
|
|
uint16_t *control_values;
|
|
|
|
int control_count;
|
|
|
|
int i;
|
|
|
|
bool should_arm;
|
|
|
|
|
2012-12-23 21:20:53 -04:00
|
|
|
/* check that we are receiving fresh data from the FMU */
|
|
|
|
if ((hrt_absolute_time() - system_state.fmu_data_received_time) > FMU_INPUT_DROP_LIMIT_US) {
|
|
|
|
/* too many frames without FMU input, time to go to failsafe */
|
|
|
|
system_state.mixer_manual_override = true;
|
|
|
|
system_state.mixer_fmu_available = false;
|
|
|
|
lib_lowprintf("\nRX timeout\n");
|
|
|
|
}
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/*
|
|
|
|
* Decide which set of inputs we're using.
|
|
|
|
*/
|
2012-12-23 21:20:53 -04:00
|
|
|
/* this is for planes, where manual override makes sense */
|
|
|
|
if(system_state.manual_override_ok) {
|
|
|
|
/* if everything is ok */
|
|
|
|
if (!system_state.mixer_manual_override && system_state.mixer_fmu_available) {
|
|
|
|
/* we have recent control data from the FMU */
|
|
|
|
control_count = PX4IO_OUTPUT_CHANNELS;
|
|
|
|
control_values = &system_state.fmu_channel_data[0];
|
|
|
|
/* when override is on or the fmu is not available */
|
|
|
|
} else if (system_state.rc_channels > 0) {
|
|
|
|
control_count = system_state.rc_channels;
|
|
|
|
control_values = &system_state.rc_channel_data[0];
|
|
|
|
} else {
|
|
|
|
/* we have no control input (no FMU, no RC) */
|
|
|
|
|
|
|
|
// XXX builtin failsafe would activate here
|
|
|
|
control_count = 0;
|
2012-08-04 19:12:36 -03:00
|
|
|
}
|
|
|
|
|
2012-12-23 21:20:53 -04:00
|
|
|
/* this is for multicopters, etc. where manual override does not make sense */
|
2012-08-04 19:12:36 -03:00
|
|
|
} else {
|
2012-12-23 21:20:53 -04:00
|
|
|
/* if the fmu is available whe are good */
|
|
|
|
if(system_state.mixer_fmu_available) {
|
|
|
|
control_count = PX4IO_OUTPUT_CHANNELS;
|
|
|
|
control_values = &system_state.fmu_channel_data[0];
|
|
|
|
/* we better shut everything off */
|
|
|
|
} else {
|
|
|
|
control_count = 0;
|
|
|
|
}
|
2012-08-04 19:12:36 -03:00
|
|
|
}
|
2012-12-04 03:20:28 -04:00
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/*
|
|
|
|
* Tickle each mixer, if we have control data.
|
|
|
|
*/
|
|
|
|
if (control_count > 0) {
|
2012-12-01 01:52:18 -04:00
|
|
|
for (i = 0; i < IO_SERVO_COUNT; i++) {
|
2012-08-04 19:12:36 -03:00
|
|
|
mixer_update(i, control_values, control_count);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are armed, update the servo output.
|
|
|
|
*/
|
2012-11-06 23:03:08 -04:00
|
|
|
if (system_state.armed && system_state.arm_ok)
|
2012-11-02 03:42:36 -03:00
|
|
|
up_pwm_servo_set(i, mixers[i].current_value);
|
2012-08-04 19:12:36 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decide whether the servos should be armed right now.
|
2012-12-01 11:30:21 -04:00
|
|
|
* A sufficient reason is armed state and either FMU or RC control inputs
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
2012-11-11 15:55:27 -04:00
|
|
|
|
2012-12-01 11:30:21 -04:00
|
|
|
should_arm = system_state.armed && system_state.arm_ok && (control_count > 0);
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-05 04:55:22 -04:00
|
|
|
mixer_update(int mixer, uint16_t *inputs, int input_count)
|
2012-08-04 19:12:36 -03:00
|
|
|
{
|
2012-11-05 04:55:22 -04:00
|
|
|
/* simple passthrough for now */
|
|
|
|
if (mixer < input_count) {
|
|
|
|
mixers[mixer].current_value = inputs[mixer];
|
|
|
|
} else {
|
|
|
|
mixers[mixer].current_value = 0;
|
|
|
|
}
|
|
|
|
}
|