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-30 04:02:47 -04:00
|
|
|
* @file comms.c
|
|
|
|
*
|
|
|
|
* FMU communication for the PX4IO module.
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2012-11-02 04:15:41 -03:00
|
|
|
#include <poll.h>
|
2012-12-01 02:36:17 -04:00
|
|
|
#include <termios.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
#include <nuttx/clock.h>
|
|
|
|
|
2012-10-23 22:02:36 -03:00
|
|
|
#include <drivers/drv_hrt.h>
|
2012-08-04 19:12:36 -03:00
|
|
|
#include <systemlib/hx_stream.h>
|
|
|
|
#include <systemlib/perf_counter.h>
|
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
#define DEBUG
|
2012-08-04 19:12:36 -03:00
|
|
|
#include "px4io.h"
|
|
|
|
|
|
|
|
#define FMU_MIN_REPORT_INTERVAL 5000 /* 5ms */
|
|
|
|
#define FMU_MAX_REPORT_INTERVAL 100000 /* 100ms */
|
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
int frame_rx;
|
|
|
|
int frame_bad;
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
static int fmu_fd;
|
|
|
|
static hx_stream_t stream;
|
|
|
|
static struct px4io_report report;
|
|
|
|
|
|
|
|
static void comms_handle_frame(void *arg, const void *buffer, size_t length);
|
|
|
|
|
2012-12-30 05:16:54 -04:00
|
|
|
perf_counter_t comms_rx_errors;
|
|
|
|
|
2012-12-01 02:36:17 -04:00
|
|
|
static void
|
2012-08-04 19:12:36 -03:00
|
|
|
comms_init(void)
|
|
|
|
{
|
2012-11-07 18:56:03 -04:00
|
|
|
/* initialise the FMU interface */
|
2012-12-01 02:15:40 -04:00
|
|
|
fmu_fd = open("/dev/ttyS1", O_RDWR);
|
2012-08-04 19:12:36 -03:00
|
|
|
stream = hx_stream_init(fmu_fd, comms_handle_frame, NULL);
|
|
|
|
|
2012-12-30 05:16:54 -04:00
|
|
|
comms_rx_errors = perf_alloc(PC_COUNT, "rx_err");
|
|
|
|
hx_stream_set_counters(stream, 0, 0, comms_rx_errors);
|
|
|
|
|
2012-11-07 18:56:03 -04:00
|
|
|
/* default state in the report to FMU */
|
2012-08-04 19:12:36 -03:00
|
|
|
report.i2f_magic = I2F_MAGIC;
|
2012-12-01 02:36:17 -04:00
|
|
|
|
|
|
|
struct termios t;
|
|
|
|
|
|
|
|
/* 115200bps, no parity, one stop bit */
|
|
|
|
tcgetattr(fmu_fd, &t);
|
|
|
|
cfsetspeed(&t, 115200);
|
|
|
|
t.c_cflag &= ~(CSTOPB | PARENB);
|
|
|
|
tcsetattr(fmu_fd, TCSANOW, &t);
|
2012-11-07 18:56:03 -04:00
|
|
|
}
|
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
void
|
|
|
|
comms_main(void)
|
2012-11-07 18:56:03 -04:00
|
|
|
{
|
2012-12-01 02:36:17 -04:00
|
|
|
comms_init();
|
2012-11-07 18:56:03 -04:00
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
struct pollfd fds;
|
|
|
|
fds.fd = fmu_fd;
|
|
|
|
fds.events = POLLIN;
|
|
|
|
debug("FMU: ready");
|
2012-11-07 18:56:03 -04:00
|
|
|
|
2012-11-30 04:02:47 -04:00
|
|
|
for (;;) {
|
2012-12-04 03:20:28 -04:00
|
|
|
/* wait for serial data, but no more than 10ms */
|
|
|
|
poll(&fds, 1, 10);
|
2012-11-07 18:56:03 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Pull bytes from FMU and feed them to the HX engine.
|
|
|
|
* Limit the number of bytes we actually process on any one iteration.
|
|
|
|
*/
|
2012-11-30 04:02:47 -04:00
|
|
|
if (fds.revents & POLLIN) {
|
2012-11-07 18:56:03 -04:00
|
|
|
char buf[32];
|
|
|
|
ssize_t count = read(fmu_fd, buf, sizeof(buf));
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-11-07 18:56:03 -04:00
|
|
|
for (int i = 0; i < count; i++)
|
|
|
|
hx_stream_rx(stream, buf[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-11-30 04:02:47 -04:00
|
|
|
* Decide if it's time to send an update to the FMU.
|
2012-11-07 18:56:03 -04:00
|
|
|
*/
|
2012-11-30 04:02:47 -04:00
|
|
|
static hrt_abstime last_report_time;
|
|
|
|
hrt_abstime now, delta;
|
|
|
|
|
|
|
|
/* should we send a report to the FMU? */
|
|
|
|
now = hrt_absolute_time();
|
|
|
|
delta = now - last_report_time;
|
2012-12-29 20:01:24 -04:00
|
|
|
|
|
|
|
if ((delta > FMU_MIN_REPORT_INTERVAL) &&
|
2012-11-30 04:02:47 -04:00
|
|
|
(system_state.fmu_report_due || (delta > FMU_MAX_REPORT_INTERVAL))) {
|
|
|
|
|
|
|
|
system_state.fmu_report_due = false;
|
|
|
|
last_report_time = now;
|
|
|
|
|
|
|
|
/* populate the report */
|
2012-12-05 02:00:24 -04:00
|
|
|
for (unsigned i = 0; i < system_state.rc_channels; i++)
|
2012-11-30 04:02:47 -04:00
|
|
|
report.rc_channel[i] = system_state.rc_channel_data[i];
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-12-04 03:20:28 -04:00
|
|
|
report.channel_count = system_state.rc_channels;
|
2012-11-30 04:02:47 -04:00
|
|
|
report.armed = system_state.armed;
|
|
|
|
|
|
|
|
/* and send it */
|
|
|
|
hx_stream_send(stream, &report, sizeof(report));
|
2012-11-07 18:56:03 -04:00
|
|
|
}
|
|
|
|
}
|
2012-08-04 19:12:36 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-05 04:55:22 -04:00
|
|
|
comms_handle_config(const void *buffer, size_t length)
|
2012-08-04 19:12:36 -03:00
|
|
|
{
|
2012-11-05 04:55:22 -04:00
|
|
|
const struct px4io_config *cfg = (struct px4io_config *)buffer;
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-11-05 04:55:22 -04:00
|
|
|
if (length != sizeof(*cfg)) {
|
|
|
|
frame_bad++;
|
2012-08-04 19:12:36 -03:00
|
|
|
return;
|
2012-11-03 05:13:17 -03:00
|
|
|
}
|
2012-11-05 04:55:22 -04:00
|
|
|
|
2012-11-03 05:13:17 -03:00
|
|
|
frame_rx++;
|
2012-11-05 04:55:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
comms_handle_command(const void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
const struct px4io_command *cmd = (struct px4io_command *)buffer;
|
|
|
|
|
|
|
|
if (length != sizeof(*cmd)) {
|
|
|
|
frame_bad++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
frame_rx++;
|
2012-11-03 05:13:17 -03:00
|
|
|
irqstate_t flags = irqsave();
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
/* fetch new PWM output values */
|
2012-12-29 21:15:48 -04:00
|
|
|
for (unsigned i = 0; i < PX4IO_CONTROL_CHANNELS; i++)
|
|
|
|
system_state.fmu_channel_data[i] = cmd->output_control[i];
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-11-06 23:03:08 -04:00
|
|
|
/* if the IO is armed and the FMU gets disarmed, the IO must also disarm */
|
2012-12-30 05:16:54 -04:00
|
|
|
if (system_state.arm_ok && !cmd->arm_ok)
|
2012-11-06 23:03:08 -04:00
|
|
|
system_state.armed = false;
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
system_state.arm_ok = cmd->arm_ok;
|
|
|
|
system_state.mixer_use_fmu = true;
|
|
|
|
system_state.fmu_data_received = true;
|
|
|
|
|
|
|
|
/* handle changes signalled by FMU */
|
2012-11-06 23:03:08 -04:00
|
|
|
// if (!system_state.arm_ok && system_state.armed)
|
|
|
|
// system_state.armed = false;
|
2012-08-04 19:12:36 -03:00
|
|
|
|
2012-12-29 20:01:24 -04:00
|
|
|
/* XXX do relay changes here */
|
2012-08-04 19:12:36 -03:00
|
|
|
for (unsigned i = 0; i < PX4IO_RELAY_CHANNELS; i++)
|
|
|
|
system_state.relays[i] = cmd->relay_state[i];
|
2012-11-03 05:13:17 -03:00
|
|
|
|
|
|
|
irqrestore(flags);
|
2012-08-04 19:12:36 -03:00
|
|
|
}
|
2012-11-05 04:55:22 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
comms_handle_frame(void *arg, const void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
const uint16_t *type = (const uint16_t *)buffer;
|
|
|
|
|
|
|
|
|
|
|
|
/* make sure it's what we are expecting */
|
|
|
|
if (length > 2) {
|
|
|
|
switch (*type) {
|
|
|
|
case F2I_MAGIC:
|
|
|
|
comms_handle_command(buffer, length);
|
|
|
|
break;
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-11-05 04:55:22 -04:00
|
|
|
case F2I_CONFIG_MAGIC:
|
|
|
|
comms_handle_config(buffer, length);
|
|
|
|
break;
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-12-29 16:58:41 -04:00
|
|
|
case F2I_MIXER_MAGIC:
|
|
|
|
mixer_handle_text(buffer, length);
|
|
|
|
break;
|
2012-12-29 20:01:24 -04:00
|
|
|
|
2012-11-05 04:55:22 -04:00
|
|
|
default:
|
2012-12-29 20:01:24 -04:00
|
|
|
frame_bad++;
|
2012-11-05 04:55:22 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|