2013-10-12 20:19:09 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2013 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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file test_mixer.hpp
|
|
|
|
|
*
|
|
|
|
|
* Mixer load test
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-11 12:16:44 -07:00
|
|
|
#include <px4_config.h>
|
2013-10-12 20:19:09 +02:00
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <errno.h>
|
2013-10-13 11:44:26 +02:00
|
|
|
#include <string.h>
|
2013-10-12 20:19:09 +02:00
|
|
|
#include <time.h>
|
2014-01-02 09:18:36 +01:00
|
|
|
#include <math.h>
|
2013-10-12 20:19:09 +02:00
|
|
|
|
|
|
|
|
#include <systemlib/err.h>
|
|
|
|
|
#include <systemlib/mixer/mixer.h>
|
2013-12-31 14:45:38 +01:00
|
|
|
#include <systemlib/pwm_limit/pwm_limit.h>
|
2014-01-02 09:18:36 +01:00
|
|
|
#include <drivers/drv_hrt.h>
|
2014-01-02 09:50:09 +01:00
|
|
|
#include <drivers/drv_pwm_output.h>
|
2013-10-12 20:19:09 +02:00
|
|
|
|
2015-07-04 11:35:11 +02:00
|
|
|
#include <uORB/topics/actuator_controls.h>
|
|
|
|
|
|
2013-10-12 20:19:09 +02:00
|
|
|
#include "tests.h"
|
|
|
|
|
|
2013-10-13 11:44:26 +02:00
|
|
|
static int mixer_callback(uintptr_t handle,
|
|
|
|
|
uint8_t control_group,
|
|
|
|
|
uint8_t control_index,
|
|
|
|
|
float &control);
|
|
|
|
|
|
2013-12-31 14:45:38 +01:00
|
|
|
const unsigned output_max = 8;
|
|
|
|
|
static float actuator_controls[output_max];
|
2015-07-04 11:35:11 +02:00
|
|
|
static bool should_prearm = false;
|
|
|
|
|
|
|
|
|
|
#define NAN_VALUE 0.0f/0.0f
|
2013-12-31 14:45:38 +01:00
|
|
|
|
2013-10-12 20:19:09 +02:00
|
|
|
int test_mixer(int argc, char *argv[])
|
|
|
|
|
{
|
2014-01-30 23:11:37 +01:00
|
|
|
/*
|
|
|
|
|
* PWM limit structure
|
|
|
|
|
*/
|
|
|
|
|
pwm_limit_t pwm_limit;
|
2015-07-04 11:35:11 +02:00
|
|
|
bool should_arm = false;
|
2014-01-30 23:11:37 +01:00
|
|
|
uint16_t r_page_servo_disarmed[output_max];
|
|
|
|
|
uint16_t r_page_servo_control_min[output_max];
|
|
|
|
|
uint16_t r_page_servo_control_max[output_max];
|
|
|
|
|
uint16_t r_page_servos[output_max];
|
|
|
|
|
uint16_t servo_predicted[output_max];
|
2015-05-23 13:17:22 +02:00
|
|
|
int16_t reverse_pwm_mask = 0;
|
2014-01-30 23:11:37 +01:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("testing mixer");
|
2013-10-12 20:19:09 +02:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
#if !defined(CONFIG_ARCH_BOARD_SITL)
|
2014-06-29 17:47:24 -07:00
|
|
|
const char *filename = "/etc/mixers/IO_pass.mix";
|
2016-07-29 13:27:58 +02:00
|
|
|
#else
|
2016-08-05 21:29:49 +02:00
|
|
|
const char *filename = "../../../../ROMFS/px4fmu_test/mixers/IO_pass.mix";
|
2016-07-29 13:27:58 +02:00
|
|
|
#endif
|
2013-10-12 20:19:09 +02:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("loading: %s", filename);
|
2013-10-12 20:19:09 +02:00
|
|
|
|
|
|
|
|
char buf[2048];
|
|
|
|
|
|
2013-10-13 11:44:26 +02:00
|
|
|
load_mixer_file(filename, &buf[0], sizeof(buf));
|
|
|
|
|
unsigned loaded = strlen(buf);
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "loaded: \n\"%s\"\n (%d chars)", &buf[0], loaded);
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
/* load the mixer in chunks, like
|
|
|
|
|
* in the case of a remote load,
|
|
|
|
|
* e.g. on PX4IO.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const unsigned chunk_size = 64;
|
|
|
|
|
|
|
|
|
|
MixerGroup mixer_group(mixer_callback, 0);
|
|
|
|
|
|
|
|
|
|
/* load at once test */
|
|
|
|
|
unsigned xx = loaded;
|
|
|
|
|
mixer_group.load_from_buf(&buf[0], xx);
|
2016-07-29 13:27:58 +02:00
|
|
|
//ASSERT_EQ(mixer_group.count(), 8);
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
unsigned empty_load = 2;
|
|
|
|
|
char empty_buf[2];
|
|
|
|
|
empty_buf[0] = ' ';
|
|
|
|
|
empty_buf[1] = '\0';
|
|
|
|
|
mixer_group.reset();
|
|
|
|
|
mixer_group.load_from_buf(&empty_buf[0], empty_load);
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("empty buffer load: loaded %u mixers, used: %u", mixer_group.count(), empty_load);
|
|
|
|
|
|
|
|
|
|
//ASSERT_NE(empty_load, 0);
|
2015-03-28 19:51:15 +01:00
|
|
|
|
|
|
|
|
if (empty_load != 0) {
|
2013-10-13 11:44:26 +02:00
|
|
|
return 1;
|
2015-03-28 19:51:15 +01:00
|
|
|
}
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
/* FIRST mark the mixer as invalid */
|
|
|
|
|
/* THEN actually delete it */
|
|
|
|
|
mixer_group.reset();
|
|
|
|
|
char mixer_text[256]; /* large enough for one mixer */
|
|
|
|
|
unsigned mixer_text_length = 0;
|
|
|
|
|
|
|
|
|
|
unsigned transmitted = 0;
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("transmitted: %d, loaded: %d", transmitted, loaded);
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
while (transmitted < loaded) {
|
|
|
|
|
|
2016-03-12 15:26:53 -05:00
|
|
|
unsigned text_length = (loaded - transmitted > chunk_size) ? chunk_size : loaded - transmitted;
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
/* check for overflow - this would be really fatal */
|
|
|
|
|
if ((mixer_text_length + text_length + 1) > sizeof(mixer_text)) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* append mixer text and nul-terminate */
|
|
|
|
|
memcpy(&mixer_text[mixer_text_length], &buf[transmitted], text_length);
|
|
|
|
|
mixer_text_length += text_length;
|
|
|
|
|
mixer_text[mixer_text_length] = '\0';
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "buflen %u, text:\n\"%s\"", mixer_text_length, &mixer_text[0]);
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
/* process the text buffer, adding new mixers as their descriptions can be parsed */
|
|
|
|
|
unsigned resid = mixer_text_length;
|
|
|
|
|
mixer_group.load_from_buf(&mixer_text[0], resid);
|
|
|
|
|
|
|
|
|
|
/* if anything was parsed */
|
|
|
|
|
if (resid != mixer_text_length) {
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "used %u", mixer_text_length - resid);
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
/* copy any leftover text to the base of the buffer for re-use */
|
2015-03-28 19:51:15 +01:00
|
|
|
if (resid > 0) {
|
2013-10-13 11:44:26 +02:00
|
|
|
memcpy(&mixer_text[0], &mixer_text[mixer_text_length - resid], resid);
|
2015-03-28 19:51:15 +01:00
|
|
|
}
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
mixer_text_length = resid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
transmitted += text_length;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("chunked load: loaded %u mixers", mixer_group.count());
|
2013-10-13 11:44:26 +02:00
|
|
|
|
2015-03-28 19:51:15 +01:00
|
|
|
if (mixer_group.count() != 8) {
|
2013-10-13 11:44:26 +02:00
|
|
|
return 1;
|
2015-03-28 19:51:15 +01:00
|
|
|
}
|
2013-10-13 11:44:26 +02:00
|
|
|
|
2013-12-31 14:45:38 +01:00
|
|
|
/* execute the mixer */
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2013-12-31 14:45:38 +01:00
|
|
|
float outputs[output_max];
|
|
|
|
|
unsigned mixed;
|
2014-01-02 09:18:36 +01:00
|
|
|
const int jmax = 5;
|
2013-12-31 14:45:38 +01:00
|
|
|
|
|
|
|
|
pwm_limit_init(&pwm_limit);
|
|
|
|
|
|
2014-01-02 09:18:36 +01:00
|
|
|
/* run through arming phase */
|
2014-06-29 17:47:24 -07:00
|
|
|
for (unsigned i = 0; i < output_max; i++) {
|
2014-01-02 09:18:36 +01:00
|
|
|
actuator_controls[i] = 0.1f;
|
2015-12-16 16:38:41 +00:00
|
|
|
r_page_servo_disarmed[i] = PWM_MOTOR_OFF;
|
2014-01-02 09:50:09 +01:00
|
|
|
r_page_servo_control_min[i] = PWM_DEFAULT_MIN;
|
|
|
|
|
r_page_servo_control_max[i] = PWM_DEFAULT_MAX;
|
2014-01-02 09:18:36 +01:00
|
|
|
}
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("PRE-ARM TEST: DISABLING SAFETY");
|
|
|
|
|
|
2015-07-04 11:35:11 +02:00
|
|
|
/* mix */
|
|
|
|
|
should_prearm = true;
|
|
|
|
|
mixed = mixer_group.mix(&outputs[0], output_max, NULL);
|
|
|
|
|
|
|
|
|
|
pwm_limit_calc(should_arm, should_prearm, mixed, reverse_pwm_mask, r_page_servo_disarmed, r_page_servo_control_min,
|
2015-09-05 12:21:12 -04:00
|
|
|
r_page_servo_control_max, outputs, r_page_servos, &pwm_limit);
|
2015-07-04 11:35:11 +02:00
|
|
|
|
|
|
|
|
//warnx("mixed %d outputs (max %d), values:", mixed, output_max);
|
|
|
|
|
for (unsigned i = 0; i < mixed; i++) {
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "pre-arm:\t %d: out: %8.4f, servo: %d \n", i, (double)outputs[i], (int)r_page_servos[i]);
|
2015-07-04 11:35:11 +02:00
|
|
|
|
|
|
|
|
if (i != actuator_controls_s::INDEX_THROTTLE) {
|
|
|
|
|
if (r_page_servos[i] < r_page_servo_control_min[i]) {
|
|
|
|
|
warnx("active servo < min");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2015-09-05 12:21:12 -04:00
|
|
|
|
2015-07-04 11:35:11 +02:00
|
|
|
} else {
|
|
|
|
|
if (r_page_servos[i] != r_page_servo_disarmed[i]) {
|
|
|
|
|
warnx("throttle output != 0 (this check assumed the IO pass mixer!)");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
should_arm = true;
|
|
|
|
|
should_prearm = false;
|
|
|
|
|
|
2015-07-04 11:47:55 +02:00
|
|
|
/* simulate another orb_copy() from actuator controls */
|
|
|
|
|
for (unsigned i = 0; i < output_max; i++) {
|
|
|
|
|
actuator_controls[i] = 0.1f;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("ARMING TEST: STARTING RAMP");
|
2014-01-02 09:18:36 +01:00
|
|
|
unsigned sleep_quantum_us = 10000;
|
|
|
|
|
|
|
|
|
|
hrt_abstime starttime = hrt_absolute_time();
|
|
|
|
|
unsigned sleepcount = 0;
|
|
|
|
|
|
2015-06-29 10:36:59 +02:00
|
|
|
while (hrt_elapsed_time(&starttime) < INIT_TIME_US + RAMP_TIME_US + 2 * sleep_quantum_us) {
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2014-01-02 09:18:36 +01:00
|
|
|
/* mix */
|
2015-04-10 17:34:38 +02:00
|
|
|
mixed = mixer_group.mix(&outputs[0], output_max, NULL);
|
2014-01-02 09:18:36 +01:00
|
|
|
|
2015-07-04 11:35:11 +02:00
|
|
|
pwm_limit_calc(should_arm, should_prearm, mixed, reverse_pwm_mask, r_page_servo_disarmed, r_page_servo_control_min,
|
2015-09-05 12:21:12 -04:00
|
|
|
r_page_servo_control_max, outputs, r_page_servos, &pwm_limit);
|
2014-01-02 09:18:36 +01:00
|
|
|
|
|
|
|
|
//warnx("mixed %d outputs (max %d), values:", mixed, output_max);
|
2015-03-28 19:51:15 +01:00
|
|
|
for (unsigned i = 0; i < mixed; i++) {
|
2015-07-04 11:35:11 +02:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "ramp:\t %d: out: %8.4f, servo: %d \n", i, (double)outputs[i], (int)r_page_servos[i]);
|
2015-07-04 11:35:11 +02:00
|
|
|
|
2014-01-02 09:18:36 +01:00
|
|
|
/* check mixed outputs to be zero during init phase */
|
|
|
|
|
if (hrt_elapsed_time(&starttime) < INIT_TIME_US &&
|
2015-03-28 19:51:15 +01:00
|
|
|
r_page_servos[i] != r_page_servo_disarmed[i]) {
|
2015-07-09 15:55:31 +02:00
|
|
|
PX4_ERR("disarmed servo value mismatch: %d vs %d", r_page_servos[i], r_page_servo_disarmed[i]);
|
2014-01-02 09:18:36 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hrt_elapsed_time(&starttime) >= INIT_TIME_US &&
|
2015-03-28 19:51:15 +01:00
|
|
|
r_page_servos[i] + 1 <= r_page_servo_disarmed[i]) {
|
2015-06-19 11:10:33 -07:00
|
|
|
PX4_ERR("ramp servo value mismatch");
|
2014-01-02 09:18:36 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2014-01-02 09:18:36 +01:00
|
|
|
usleep(sleep_quantum_us);
|
|
|
|
|
sleepcount++;
|
|
|
|
|
|
|
|
|
|
if (sleepcount % 10 == 0) {
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("ARMING TEST: NORMAL OPERATION");
|
2014-01-02 09:18:36 +01:00
|
|
|
|
2013-12-31 14:45:38 +01:00
|
|
|
for (int j = -jmax; j <= jmax; j++) {
|
|
|
|
|
|
2014-06-29 17:47:24 -07:00
|
|
|
for (unsigned i = 0; i < output_max; i++) {
|
2015-03-28 19:51:15 +01:00
|
|
|
actuator_controls[i] = j / 10.0f + 0.1f * i;
|
2014-01-02 09:50:09 +01:00
|
|
|
r_page_servo_disarmed[i] = PWM_LOWEST_MIN;
|
|
|
|
|
r_page_servo_control_min[i] = PWM_DEFAULT_MIN;
|
|
|
|
|
r_page_servo_control_max[i] = PWM_DEFAULT_MAX;
|
2013-12-31 14:45:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* mix */
|
2015-04-10 17:34:38 +02:00
|
|
|
mixed = mixer_group.mix(&outputs[0], output_max, NULL);
|
2013-12-31 14:45:38 +01:00
|
|
|
|
2015-09-05 12:21:12 -04:00
|
|
|
pwm_limit_calc(should_arm, should_prearm, mixed, reverse_pwm_mask, r_page_servo_disarmed, r_page_servo_control_min,
|
|
|
|
|
r_page_servo_control_max, outputs,
|
2015-03-28 19:51:15 +01:00
|
|
|
r_page_servos, &pwm_limit);
|
2013-12-31 14:45:38 +01:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "mixed %d outputs (max %d)", mixed, output_max);
|
2015-03-28 19:51:15 +01:00
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < mixed; i++) {
|
2014-01-02 09:18:36 +01:00
|
|
|
servo_predicted[i] = 1500 + outputs[i] * (r_page_servo_control_max[i] - r_page_servo_control_min[i]) / 2.0f;
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2015-06-30 07:33:52 +02:00
|
|
|
if (abs(servo_predicted[i] - r_page_servos[i]) > 2) {
|
2016-03-12 15:43:25 -05:00
|
|
|
fprintf(stderr, "\t %d: %8.4f predicted: %d, servo: %d\n", i, (double)outputs[i], servo_predicted[i],
|
|
|
|
|
(int)r_page_servos[i]);
|
2015-06-19 11:10:33 -07:00
|
|
|
PX4_ERR("mixer violated predicted value");
|
2014-01-02 09:18:36 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
2013-12-31 14:45:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("ARMING TEST: DISARMING");
|
2014-01-02 09:50:09 +01:00
|
|
|
|
|
|
|
|
starttime = hrt_absolute_time();
|
|
|
|
|
sleepcount = 0;
|
|
|
|
|
should_arm = false;
|
|
|
|
|
|
|
|
|
|
while (hrt_elapsed_time(&starttime) < 600000) {
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2014-01-02 09:50:09 +01:00
|
|
|
/* mix */
|
2015-04-10 17:34:38 +02:00
|
|
|
mixed = mixer_group.mix(&outputs[0], output_max, NULL);
|
2014-01-02 09:50:09 +01:00
|
|
|
|
2015-09-05 12:21:12 -04:00
|
|
|
pwm_limit_calc(should_arm, should_prearm, mixed, reverse_pwm_mask, r_page_servo_disarmed, r_page_servo_control_min,
|
|
|
|
|
r_page_servo_control_max, outputs,
|
2015-03-28 19:51:15 +01:00
|
|
|
r_page_servos, &pwm_limit);
|
2014-01-02 09:50:09 +01:00
|
|
|
|
|
|
|
|
//warnx("mixed %d outputs (max %d), values:", mixed, output_max);
|
2015-03-28 19:51:15 +01:00
|
|
|
for (unsigned i = 0; i < mixed; i++) {
|
2015-07-04 11:35:11 +02:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "disarmed:\t %d: out: %8.4f, servo: %d \n", i, (double)outputs[i], (int)r_page_servos[i]);
|
2015-07-04 11:35:11 +02:00
|
|
|
|
2014-01-02 09:50:09 +01:00
|
|
|
/* check mixed outputs to be zero during init phase */
|
|
|
|
|
if (r_page_servos[i] != r_page_servo_disarmed[i]) {
|
2015-06-19 11:10:33 -07:00
|
|
|
PX4_ERR("disarmed servo value mismatch");
|
2014-01-02 09:50:09 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2014-01-02 09:50:09 +01:00
|
|
|
usleep(sleep_quantum_us);
|
|
|
|
|
sleepcount++;
|
|
|
|
|
|
|
|
|
|
if (sleepcount % 10 == 0) {
|
2016-07-29 13:27:58 +02:00
|
|
|
//printf(".");
|
|
|
|
|
//fflush(stdout);
|
2014-01-02 09:50:09 +01:00
|
|
|
}
|
|
|
|
|
}
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//printf("\n");
|
2014-01-02 09:50:09 +01:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("ARMING TEST: REARMING: STARTING RAMP");
|
2014-01-02 09:50:09 +01:00
|
|
|
|
|
|
|
|
starttime = hrt_absolute_time();
|
|
|
|
|
sleepcount = 0;
|
|
|
|
|
should_arm = true;
|
|
|
|
|
|
|
|
|
|
while (hrt_elapsed_time(&starttime) < 600000 + RAMP_TIME_US) {
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2014-01-02 09:50:09 +01:00
|
|
|
/* mix */
|
2015-04-10 17:34:38 +02:00
|
|
|
mixed = mixer_group.mix(&outputs[0], output_max, NULL);
|
2014-01-02 09:50:09 +01:00
|
|
|
|
2015-09-05 12:21:12 -04:00
|
|
|
pwm_limit_calc(should_arm, should_prearm, mixed, reverse_pwm_mask, r_page_servo_disarmed, r_page_servo_control_min,
|
|
|
|
|
r_page_servo_control_max, outputs,
|
2015-03-28 19:51:15 +01:00
|
|
|
r_page_servos, &pwm_limit);
|
2014-01-02 09:50:09 +01:00
|
|
|
|
|
|
|
|
//warnx("mixed %d outputs (max %d), values:", mixed, output_max);
|
2015-03-28 19:51:15 +01:00
|
|
|
for (unsigned i = 0; i < mixed; i++) {
|
2014-01-02 09:50:09 +01:00
|
|
|
/* predict value */
|
|
|
|
|
servo_predicted[i] = 1500 + outputs[i] * (r_page_servo_control_max[i] - r_page_servo_control_min[i]) / 2.0f;
|
|
|
|
|
|
|
|
|
|
/* check ramp */
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "ramp:\t %d: out: %8.4f, servo: %d \n", i, (double)outputs[i], (int)r_page_servos[i]);
|
2015-07-04 11:35:11 +02:00
|
|
|
|
2014-01-02 09:50:09 +01:00
|
|
|
if (hrt_elapsed_time(&starttime) < RAMP_TIME_US &&
|
2015-03-28 19:51:15 +01:00
|
|
|
(r_page_servos[i] + 1 <= r_page_servo_disarmed[i] ||
|
|
|
|
|
r_page_servos[i] > servo_predicted[i])) {
|
2015-06-19 11:10:33 -07:00
|
|
|
PX4_ERR("ramp servo value mismatch");
|
2014-01-02 09:50:09 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* check post ramp phase */
|
|
|
|
|
if (hrt_elapsed_time(&starttime) > RAMP_TIME_US &&
|
2015-06-30 07:33:52 +02:00
|
|
|
abs(servo_predicted[i] - r_page_servos[i]) > 2) {
|
2014-06-29 17:47:24 -07:00
|
|
|
printf("\t %d: %8.4f predicted: %d, servo: %d\n", i, (double)outputs[i], servo_predicted[i], (int)r_page_servos[i]);
|
2015-06-19 11:10:33 -07:00
|
|
|
PX4_ERR("mixer violated predicted value");
|
2014-01-02 09:50:09 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2014-01-02 09:50:09 +01:00
|
|
|
usleep(sleep_quantum_us);
|
|
|
|
|
sleepcount++;
|
|
|
|
|
|
|
|
|
|
if (sleepcount % 10 == 0) {
|
2016-07-29 13:27:58 +02:00
|
|
|
// printf(".");
|
|
|
|
|
// fflush(stdout);
|
2014-01-02 09:50:09 +01:00
|
|
|
}
|
|
|
|
|
}
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//printf("\n");
|
2014-01-02 09:50:09 +01:00
|
|
|
|
2013-10-13 11:44:26 +02:00
|
|
|
/* load multirotor at once test */
|
|
|
|
|
mixer_group.reset();
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
#if !defined(CONFIG_ARCH_BOARD_SITL)
|
|
|
|
|
filename = "/etc/mixers/quad_test.mix";
|
|
|
|
|
#else
|
2016-08-05 21:29:49 +02:00
|
|
|
filename = "../../../../ROMFS/px4fmu_test/mixers/quad_test.mix";
|
2016-07-29 13:27:58 +02:00
|
|
|
#endif
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
load_mixer_file(filename, &buf[0], sizeof(buf));
|
|
|
|
|
loaded = strlen(buf);
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//fprintf(stderr, "loaded: \n\"%s\"\n (%d chars)", &buf[0], loaded);
|
2013-10-13 11:44:26 +02:00
|
|
|
|
|
|
|
|
unsigned mc_loaded = loaded;
|
|
|
|
|
mixer_group.load_from_buf(&buf[0], mc_loaded);
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("complete buffer load: loaded %u mixers", mixer_group.count());
|
2015-03-28 19:51:15 +01:00
|
|
|
|
2016-04-17 18:53:50 +02:00
|
|
|
if (mixer_group.count() != 5) {
|
|
|
|
|
PX4_ERR("FAIL: Quad test mixer load failed");
|
2013-10-13 11:44:26 +02:00
|
|
|
return 1;
|
2014-01-02 09:18:36 +01:00
|
|
|
}
|
|
|
|
|
|
2016-07-29 13:27:58 +02:00
|
|
|
//PX4_INFO("SUCCESS: No errors in mixer test");
|
2014-06-29 13:55:55 -07:00
|
|
|
return 0;
|
2013-10-13 11:44:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2016-07-29 13:27:58 +02:00
|
|
|
mixer_callback(uintptr_t handle, uint8_t control_group, uint8_t control_index, float &control)
|
2013-10-13 11:44:26 +02:00
|
|
|
{
|
2015-03-28 19:51:15 +01:00
|
|
|
if (control_group != 0) {
|
2013-10-13 11:44:26 +02:00
|
|
|
return -1;
|
2015-03-28 19:51:15 +01:00
|
|
|
}
|
2013-10-12 20:19:09 +02:00
|
|
|
|
2015-03-28 19:51:15 +01:00
|
|
|
if (control_index > (sizeof(actuator_controls) / sizeof(actuator_controls[0]))) {
|
2013-12-31 14:45:38 +01:00
|
|
|
return -1;
|
2015-03-28 19:51:15 +01:00
|
|
|
}
|
2013-12-31 14:45:38 +01:00
|
|
|
|
|
|
|
|
control = actuator_controls[control_index];
|
2013-10-12 20:19:09 +02:00
|
|
|
|
2015-07-04 11:35:11 +02:00
|
|
|
if (should_prearm && control_group == actuator_controls_s::GROUP_INDEX_ATTITUDE &&
|
2015-09-05 12:21:12 -04:00
|
|
|
control_index == actuator_controls_s::INDEX_THROTTLE) {
|
2015-07-04 11:35:11 +02:00
|
|
|
control = NAN_VALUE;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-12 20:19:09 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|