35 changed files with 1349 additions and 706 deletions
Binary file not shown.
Binary file not shown.
@ -0,0 +1,92 @@
@@ -0,0 +1,92 @@
|
||||
/****************************************************************************
|
||||
* |
||||
* 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 comms.c |
||||
* @author Simon Wilks <sjwilks@gmail.com> |
||||
* |
||||
*/ |
||||
|
||||
#include "comms.h" |
||||
|
||||
#include <fcntl.h> |
||||
#include <stdio.h> |
||||
#include <sys/ioctl.h> |
||||
#include <systemlib/err.h> |
||||
#include <termios.h> |
||||
|
||||
int |
||||
open_uart(const char *device) |
||||
{ |
||||
/* baud rate */ |
||||
static const speed_t speed = B19200; |
||||
|
||||
/* open uart */ |
||||
const int uart = open(device, O_RDWR | O_NOCTTY); |
||||
|
||||
if (uart < 0) { |
||||
err(1, "Error opening port: %s", device); |
||||
} |
||||
|
||||
/* Back up the original uart configuration to restore it after exit */
|
||||
int termios_state; |
||||
struct termios uart_config_original; |
||||
if ((termios_state = tcgetattr(uart, &uart_config_original)) < 0) { |
||||
close(uart); |
||||
err(1, "Error getting baudrate / termios config for %s: %d", device, termios_state); |
||||
} |
||||
|
||||
/* Fill the struct for the new configuration */ |
||||
struct termios uart_config; |
||||
tcgetattr(uart, &uart_config); |
||||
|
||||
/* Clear ONLCR flag (which appends a CR for every LF) */ |
||||
uart_config.c_oflag &= ~ONLCR; |
||||
|
||||
/* Set baud rate */ |
||||
if (cfsetispeed(&uart_config, speed) < 0 || cfsetospeed(&uart_config, speed) < 0) { |
||||
close(uart); |
||||
err(1, "Error setting baudrate / termios config for %s: %d (cfsetispeed, cfsetospeed)", |
||||
device, termios_state); |
||||
} |
||||
|
||||
if ((termios_state = tcsetattr(uart, TCSANOW, &uart_config)) < 0) { |
||||
close(uart); |
||||
err(1, "Error setting baudrate / termios config for %s (tcsetattr)", device); |
||||
} |
||||
|
||||
/* Activate single wire mode */ |
||||
ioctl(uart, TIOCSSINGLEWIRE, SER_SINGLEWIRE_ENABLED); |
||||
|
||||
return uart; |
||||
} |
@ -0,0 +1,46 @@
@@ -0,0 +1,46 @@
|
||||
/****************************************************************************
|
||||
* |
||||
* 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 comms.h |
||||
* @author Simon Wilks <sjwilks@gmail.com> |
||||
* |
||||
*/ |
||||
|
||||
|
||||
#ifndef COMMS_H_ |
||||
#define COMMS_H |
||||
|
||||
int open_uart(const char *device); |
||||
|
||||
#endif /* COMMS_H_ */ |
@ -0,0 +1,238 @@
@@ -0,0 +1,238 @@
|
||||
/****************************************************************************
|
||||
* |
||||
* Copyright (c) 2012, 2013 PX4 Development Team. All rights reserved. |
||||
* Author: Simon Wilks <sjwilks@gmail.com> |
||||
* |
||||
* 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 hott_sensors.c |
||||
* @author Simon Wilks <sjwilks@gmail.com> |
||||
* |
||||
* Graupner HoTT sensor driver implementation. |
||||
* |
||||
* Poll any sensors connected to the PX4 via the telemetry wire. |
||||
*/ |
||||
|
||||
#include <fcntl.h> |
||||
#include <nuttx/config.h> |
||||
#include <poll.h> |
||||
#include <stdlib.h> |
||||
#include <stdio.h> |
||||
#include <string.h> |
||||
#include <sys/ioctl.h> |
||||
#include <unistd.h> |
||||
#include <systemlib/err.h> |
||||
#include <systemlib/systemlib.h> |
||||
|
||||
#include "../comms.h" |
||||
#include "../messages.h" |
||||
|
||||
#define DEFAULT_UART "/dev/ttyS0"; /**< USART1 */ |
||||
|
||||
/* Oddly, ERROR is not defined for C++ */ |
||||
#ifdef ERROR |
||||
# undef ERROR |
||||
#endif |
||||
static const int ERROR = -1; |
||||
|
||||
static int thread_should_exit = false; /**< Deamon exit flag */ |
||||
static int thread_running = false; /**< Deamon status flag */ |
||||
static int deamon_task; /**< Handle of deamon task / thread */ |
||||
static const char daemon_name[] = "hott_sensors"; |
||||
static const char commandline_usage[] = "usage: hott_sensors start|status|stop [-d <device>]"; |
||||
|
||||
/**
|
||||
* Deamon management function. |
||||
*/ |
||||
extern "C" __EXPORT int hott_sensors_main(int argc, char *argv[]); |
||||
|
||||
/**
|
||||
* Mainloop of daemon. |
||||
*/ |
||||
int hott_sensors_thread_main(int argc, char *argv[]); |
||||
|
||||
static int recv_data(int uart, uint8_t *buffer, size_t *size, uint8_t *id); |
||||
static int send_poll(int uart, uint8_t *buffer, size_t size); |
||||
|
||||
int |
||||
send_poll(int uart, uint8_t *buffer, size_t size) |
||||
{ |
||||
for (size_t i = 0; i < size; i++) { |
||||
write(uart, &buffer[i], sizeof(buffer[i])); |
||||
|
||||
/* Sleep before sending the next byte. */ |
||||
usleep(POST_WRITE_DELAY_IN_USECS); |
||||
} |
||||
|
||||
/* A hack the reads out what was written so the next read from the receiver doesn't get it. */ |
||||
/* TODO: Fix this!! */ |
||||
uint8_t dummy[size]; |
||||
read(uart, &dummy, size); |
||||
|
||||
return OK; |
||||
} |
||||
|
||||
int |
||||
recv_data(int uart, uint8_t *buffer, size_t *size, uint8_t *id) |
||||
{ |
||||
static const int timeout_ms = 1000; |
||||
|
||||
struct pollfd fds; |
||||
fds.fd = uart; |
||||
fds.events = POLLIN; |
||||
|
||||
// XXX should this poll be inside the while loop???
|
||||
if (poll(&fds, 1, timeout_ms) > 0) { |
||||
int i = 0; |
||||
bool stop_byte_read = false; |
||||
while (true) { |
||||
read(uart, &buffer[i], sizeof(buffer[i])); |
||||
|
||||
if (stop_byte_read) { |
||||
// XXX process checksum
|
||||
*size = ++i; |
||||
return OK; |
||||
} |
||||
// XXX can some other field not have the STOP BYTE value?
|
||||
if (buffer[i] == STOP_BYTE) { |
||||
*id = buffer[1]; |
||||
stop_byte_read = true; |
||||
} |
||||
i++; |
||||
} |
||||
} |
||||
return ERROR; |
||||
} |
||||
|
||||
int |
||||
hott_sensors_thread_main(int argc, char *argv[]) |
||||
{ |
||||
warnx("starting"); |
||||
|
||||
thread_running = true; |
||||
|
||||
const char *device = DEFAULT_UART; |
||||
|
||||
/* read commandline arguments */ |
||||
for (int i = 0; i < argc && argv[i]; i++) { |
||||
if (strcmp(argv[i], "-d") == 0 || strcmp(argv[i], "--device") == 0) { //device set
|
||||
if (argc > i + 1) { |
||||
device = argv[i + 1]; |
||||
|
||||
} else { |
||||
thread_running = false; |
||||
errx(1, "missing parameter to -d\n%s", commandline_usage); |
||||
} |
||||
} |
||||
} |
||||
|
||||
/* enable UART, writes potentially an empty buffer, but multiplexing is disabled */ |
||||
const int uart = open_uart(device); |
||||
if (uart < 0) { |
||||
errx(1, "Failed opening HoTT UART, exiting."); |
||||
thread_running = false; |
||||
} |
||||
|
||||
init_pub_messages(); |
||||
|
||||
uint8_t buffer[MAX_MESSAGE_BUFFER_SIZE]; |
||||
size_t size = 0; |
||||
uint8_t id = 0; |
||||
while (!thread_should_exit) { |
||||
// Currently we only support a General Air Module sensor.
|
||||
build_gam_request(&buffer[0], &size); |
||||
send_poll(uart, buffer, size); |
||||
|
||||
// The sensor will need a little time before it starts sending.
|
||||
usleep(5000); |
||||
|
||||
recv_data(uart, &buffer[0], &size, &id); |
||||
|
||||
// Determine which moduel sent it and process accordingly.
|
||||
if (id == GAM_SENSOR_ID) { |
||||
publish_gam_message(buffer); |
||||
} else { |
||||
warnx("Unknown sensor ID: %d", id); |
||||
} |
||||
} |
||||
|
||||
warnx("exiting"); |
||||
close(uart); |
||||
thread_running = false; |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
/**
|
||||
* Process command line arguments and start the daemon. |
||||
*/ |
||||
int |
||||
hott_sensors_main(int argc, char *argv[]) |
||||
{ |
||||
if (argc < 1) { |
||||
errx(1, "missing command\n%s", commandline_usage); |
||||
} |
||||
|
||||
if (!strcmp(argv[1], "start")) { |
||||
|
||||
if (thread_running) { |
||||
warnx("deamon already running"); |
||||
exit(0); |
||||
} |
||||
|
||||
thread_should_exit = false; |
||||
deamon_task = task_spawn_cmd(daemon_name, |
||||
SCHED_DEFAULT, |
||||
SCHED_PRIORITY_MAX - 40, |
||||
1024, |
||||
hott_sensors_thread_main, |
||||
(argv) ? (const char **)&argv[2] : (const char **)NULL); |
||||
exit(0); |
||||
} |
||||
|
||||
if (!strcmp(argv[1], "stop")) { |
||||
thread_should_exit = true; |
||||
exit(0); |
||||
} |
||||
|
||||
if (!strcmp(argv[1], "status")) { |
||||
if (thread_running) { |
||||
warnx("daemon is running"); |
||||
|
||||
} else { |
||||
warnx("daemon not started"); |
||||
} |
||||
|
||||
exit(0); |
||||
} |
||||
|
||||
errx(1, "unrecognized command\n%s", commandline_usage); |
||||
} |
@ -0,0 +1,42 @@
@@ -0,0 +1,42 @@
|
||||
############################################################################
|
||||
#
|
||||
# Copyright (c) 2012, 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.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
#
|
||||
# Graupner HoTT Sensors application.
|
||||
#
|
||||
|
||||
MODULE_COMMAND = hott_sensors
|
||||
|
||||
SRCS = hott_sensors.cpp \
|
||||
../messages.cpp \
|
||||
../comms.cpp
|
Loading…
Reference in new issue