From 65c802862979041efc6014f8c6fac240d49a806b Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Fri, 11 Jan 2013 07:35:40 +0100 Subject: Working on override channel mapping, allowed trim cal only with RC on --- apps/px4io/mixer.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/px4io') diff --git a/apps/px4io/mixer.cpp b/apps/px4io/mixer.cpp index 93fe93b39..ed7d684b6 100644 --- a/apps/px4io/mixer.cpp +++ b/apps/px4io/mixer.cpp @@ -72,6 +72,7 @@ extern "C" { #define PITCH 1 #define YAW 2 #define THROTTLE 3 +#define OVERRIDE 4 /* current servo arm/disarm state */ bool mixer_servos_armed = false; @@ -125,6 +126,7 @@ mixer_tick(void) rc_channel_data[PITCH] = system_state.rc_channel_data[system_state.rc_map[PITCH] - 1]; rc_channel_data[YAW] = system_state.rc_channel_data[system_state.rc_map[YAW] - 1]; rc_channel_data[THROTTLE] = system_state.rc_channel_data[system_state.rc_map[THROTTLE] - 1]; + //rc_channel_data[OVERRIDE] = system_state.rc_channel_data[system_state.rc_map[OVERRIDE] - 1]; /* get the remaining channels, no remapping needed */ for (unsigned i = 4; i < system_state.rc_channels; i++) { -- cgit v1.2.3