aboutsummaryrefslogtreecommitdiff
path: root/apps/px4io/mixer.cpp
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-01-15 00:41:13 -0800
committerpx4dev <px4@purgatory.org>2013-01-15 00:41:13 -0800
commit112f5ea9697a2ada9e3852f9c2e7c10ab0e78a8a (patch)
treeb2b766fff575c9308c9cd37999f0d6ddb8e59fb0 /apps/px4io/mixer.cpp
parentf3a587dfced54bfdfe3471e6099c3ea16bc33a31 (diff)
downloadpx4-firmware-112f5ea9697a2ada9e3852f9c2e7c10ab0e78a8a.tar.gz
px4-firmware-112f5ea9697a2ada9e3852f9c2e7c10ab0e78a8a.tar.bz2
px4-firmware-112f5ea9697a2ada9e3852f9c2e7c10ab0e78a8a.zip
Add support for raw PWM passthrough from FMU via IO.
Diffstat (limited to 'apps/px4io/mixer.cpp')
-rw-r--r--apps/px4io/mixer.cpp68
1 files changed, 44 insertions, 24 deletions
diff --git a/apps/px4io/mixer.cpp b/apps/px4io/mixer.cpp
index f394233f4..178b0bb43 100644
--- a/apps/px4io/mixer.cpp
+++ b/apps/px4io/mixer.cpp
@@ -81,6 +81,7 @@ static int mixer_callback(uintptr_t handle,
uint8_t control_index,
float &control);
+static void mix();
static MixerGroup mixer_group(mixer_callback, 0);
void
@@ -91,7 +92,7 @@ mixer_tick(void)
/* too long without FMU input, time to go to failsafe */
r_status_flags |= PX4IO_P_STATUS_FLAGS_OVERRIDE;
- r_status_flags &= ~PX4IO_P_STATUS_FLAGS_FMU_OK;
+ r_status_flags &= ~(PX4IO_P_STATUS_FLAGS_FMU_OK | PX4IO_P_STATUS_FLAGS_RAW_PPM);
r_status_alarms |= PX4IO_P_STATUS_ALARMS_FMU_LOST;
debug("AP RX timeout");
}
@@ -100,13 +101,26 @@ mixer_tick(void)
* Decide which set of controls we're using.
*/
if ((r_setup_features & PX4IO_P_FEAT_ARMING_MANUAL_OVERRIDE_OK) &&
- (r_status_flags & PX4IO_P_STATUS_FLAGS_OVERRIDE)) {
+ (r_status_flags & PX4IO_P_STATUS_FLAGS_OVERRIDE) &&
+ (r_status_flags & PX4IO_P_STATUS_FLAGS_RC_OK)) {
/* this is for planes, where manual override makes sense */
source = MIX_OVERRIDE;
+
+ /* mix from the override controls */
+ mix();
+
} else if (r_status_flags & PX4IO_P_STATUS_FLAGS_FMU_OK) {
- source = MIX_FMU;
+
+ if (r_status_flags & PX4IO_P_STATUS_FLAGS_RAW_PPM) {
+ /* FMU has already provided PWM values */
+ } else {
+ /* mix from FMU controls */
+ source = MIX_FMU;
+ mix();
+ }
} else {
source = MIX_FAILSAFE;
+ /* XXX actually, have no idea what to do here... load hardcoded failsafe controls? */
}
#if 0
@@ -173,27 +187,6 @@ mixer_tick(void)
}
}
#endif
- /*
- * Run the mixers.
- */
- 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;
/*
* Update the servo outputs.
@@ -219,6 +212,33 @@ mixer_tick(void)
}
}
+static void
+mix()
+{
+ /*
+ * Run the mixers.
+ */
+ 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;
+
+}
+
static int
mixer_callback(uintptr_t handle,
uint8_t control_group,