[Documentation] [TitleIndex] [WordIndex

  Show EOL distros: 

kvh_geo_fog_3d: kvh_geo_fog_3d_driver | kvh_geo_fog_3d_msgs | kvh_geo_fog_3d_rviz

Package Summary

A ROS driver for the KVH Geo Fog 3D INS family of systems.

  • Maintainer status: maintained
  • Maintainer: Zach LaCelle <zlacelle AT mitre DOT org>
  • Author: Trevor Bostic <tbostic AT mitre DOT org>, Zach LaCelle <zlacelle AT mitre DOT org>
  • License: Apache 2.0
  • Source: git https://github.com/MITRE/kvh_geo_fog_3d.git (branch: master)
kvh_geo_fog_3d: kvh_geo_fog_3d_driver | kvh_geo_fog_3d_msgs | kvh_geo_fog_3d_rviz

Package Summary

A ROS driver for the KVH Geo Fog 3D INS family of systems.

  • Maintainer status: maintained
  • Maintainer: Zach LaCelle <zlacelle AT mitre DOT org>
  • Author: Trevor Bostic <tbostic AT mitre DOT org>, Zach LaCelle <zlacelle AT mitre DOT org>
  • License: Apache 2.0
  • Source: git https://github.com/MITRE/kvh_geo_fog_3d.git (branch: master)
kvh_geo_fog_3d: kvh_geo_fog_3d_driver | kvh_geo_fog_3d_msgs | kvh_geo_fog_3d_rviz

Package Summary

A ROS driver for the KVH Geo Fog 3D INS family of systems.

  • Maintainer status: maintained
  • Maintainer: Zach LaCelle <zlacelle AT mitre DOT org>
  • Author: Trevor Bostic <tbostic AT mitre DOT org>, Zach LaCelle <zlacelle AT mitre DOT org>
  • License: Apache 2.0
  • Source: git https://github.com/MITRE/kvh_geo_fog_3d.git (branch: master)

Overview

This documentation is copied from the README.md in the kvh_geo_fog_3d/kvh_geo_fog_3d_driver package source code. While every effort is made to update the wiki upon updates to the README.md, the README.md contains the most up-to-date documentation.

Driver for the KVH GEO FOG 3D inertial navigation systems. Connects over serial to the KVH GEO FOG 3D device and publishes out both KVH-specific and generic ROS-ified messages, as well as performs basic transforms to convert data to the ROS-conformant conventions.

Initial testing at The MITRE Corporation was done on the "Dual" model, which provides dual-antenna heading solutions. However, the API should match between the dual and non-dual models.

For detailed information on the KVH GEO FOG 3D functionality, consult the technical reference manual.

Product pages:

KVH GEO FOG 3D

KVH GEO FOG 3D Dual

Copyright 2019 The MITRE Corporation. All Rights Reserved.

ROS API

kvh_geo_fog_3d_driver_node

The main driver node.

Published Topics

KVH-specific messages

All of these messages are defined as part of the kvh_geo_fog_3d_msgs package. They are direct pass-throughs of KVH messages, so almost universally do not conform with ROS REPs (103, 105, or 145).

KVH reports latitude and longitude in radians.

Conventional ROS messages

Not all of these messages conform to ROS REP-105 or REP-145. See the "ROS Conformance and Conventions" section below for more details.

Generally speaking, anything with a "_flu" or a "_enu" suffix conforms to ROS REPs.

All angles are measured in radians unless suffixed with "_deg".

NavSatFix latitude/longitude is measured in degrees (see message definition). This is different than the KVH messages, which report latitude/longitude in radians.

Parameters

The driver asks for the wheel odometer pulses per meter to be passed as a parameter. This is because the KVH API provides the odometer pulses directionally (i.e. if you back up, the pulse count decreases) but the odometer distance as an absolute distance traveled (i.e. backing up increases distance traveled, and it never goes negative). This is the only source of non-differentiated data, which is useful to fuse as a position in filters since it doesn't drift over time (unlike velocity, which will drift). The KVH API does not provide a method for obtaining its current wheel odometer pulse distance value. Thus, it must be hand-coded in as a parameter. In the future, hopefully KVH exposes this value over the API.

determine_baud_node

A node to determine and, optionally, set the baud rate of the sensor. The supported baud rates are listed out in the technical reference manual.

Parameters

Setup

Installation

Below are instructions on getting connected to the KVH.

Serial port configuration

To connect to the KVH you can use the FTDI cable KVH provides or a serial cable to connect. In our setup, we use the FTDI cable to connect to our laptops for development and debug, and then a serial cable to connect to our mission computer.

By default, the serial port is owned by the root.dialout group. To run this driver without root privileges, you must add your user to the dialout group. If you are still having permission errors you can use chmod to change the permissions manually.

$ sudo chmod a+rw <port>  # E.g., port may be /dev/ttyUSB0

Beware that some COM ports are limited to 115200, which is not enough bandwidth to handle large amounts of KVH data. In our case, we had to enable a multiplexer via the bios on our mission computer to allow larger baud rates. The FTDI cable KVH provides should support all baud rates.

Running the driver

First you will need to clone and build the repository

$ git clone <url> 

$ cd kvh_geo_fog_3d 

$ catkin build kvh_geo_fog_3d 

It is important that you have the KVH messages installed properly. After building initially you can check by running:

$ source .../devel/setup.bash # May be required after building

$ rosmsg list | grep kvh 

You should see the messages listed in the KVH-specific messages section above.

Now you should be able to launch the driver by running

$ roslaunch kvh_geo_fog_3d_driver kvh_geo_fog_3d_node.launch port:=<port> baud:=<baud> # E.g., port="/dev/ttyUSB0" baud="921600"

If everything is set up properly, you should be able to see data being output on each of the topics listed above. Currently the driver is hardcoded to output the data from the following kvh packets:

  1. System State
  2. Satellites
  3. Detailed Satellites
  4. Local Magnetics
  5. UTM position
  6. ECEF position
  7. North Seeking Status
  8. Odometer State
  9. Raw Sensors
  10. Raw GNSS

If you need other packets, please see the development guide below.

Though the KVH defaults to 115200 baud, we recommend using the baud utility in the section below to set this baud rate to 921600 to prevent data overflow.

Baud Debug

Note that the above assumes you know the baudrate, which is 115200 by default. If you do not know the baud rate you have a couple options:

  1. Relaunch the node manually trying each of the possible baud rates.
  2. Contact KVH and get access to the GEO-FOG manager, which is a GUI tool for interacting with the KVH.
  3. We have provided a ros node that attempts to automatically detect the baud rate by trying each of the baud rates and checking for returned data. You can launch this node by running the command below. By default it will start at 1200, but the starting baud rate setting is available if you believe that the baud rate it is finding is incorrect or recieving random data (i.e. allows you to skip baud rates). $ roslaunch kvh_geo_fog_3d_driver determine_baud.launch starting_baud:=<baud_rate>  Due to the rs232 connecting library we use, the possible baud rates are: 1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400, 460800, 500000, 576000, 921600, 1000000

This will give you the option to set the buad rate as well. It is currently recommended to set the baud rate to 921600 as that is the smallest baud rate that will never overflow.

Note: this number can be smaller and still work, but due to the possibility of the detailed satellites packet being the maximum size we recommend this.

ROS conformance and Conventions

This driver attempts to conform to ROS Enhancement Proposals (REPs) when appropriate.

REP 105 - Coordinate Frames for Mobile Platforms

Link: https://reps/rep-0105.html

Summary:

This sensor, like many navigation sensors, uses the somewhat standard Front-Right-Down and North-East-Down (FRD/NED) coordinate frame conventions. ROS opts to use the standards Front-Left-Up and East-North-Up (FLU/ENU) frames.

All data will be published in the sensor-standard formats (FRD/NED) and suffixed with "_frd" and "_ned". The driver will also publish FLU/ENU topics to conform with ROS REP 105. These topics will have the suffix "_flu" and "_enu".

REP 145 - Conventions for IMU Sensor Drivers

Link: http://reps/rep-0145.html

Summary:

This sensor fuses orientation data into its inertial solution, using GPS-baseline heading calculations, gyro-compassing, and course-over-ground calculations, among other methods. To conform with ROS REP 145, we will publish the raw inertial data, stripped of orientation, in both FRD and FLU frames.

We will deviate from REP 145 by explicitly terminating topics with _frd and _flu. There will be no standard imu/data_raw and imu/data labelled topics. The end user should select the topic with the frame convention they'd like to consume.

For frame_id strings, we will deviate from REP 103 and use the following:

Bearing Convention

This sensor produces bearing measurements with respect to true north. The other two forms of north are magnetic north and grid north. Grid north differs very slightly from true north, and is dependent upon where in the UTM grid your sensor is located. Magnetic north differs significantly from true north, and is dependent upon the fluctuation of the magnetic field.

Orientation Convention

The orientations presented by the sensor are either in ENU or NED conventions. Practically, this means a sign change in pitch and yaw between the two conventions. Yaw is aligned with true north.

Because of a limitation in how ROS sensor_msgs/Imu reports data, it can be unclear when viewing the message specifications the frame respective of which orientation is reported. This ambiguity is caused by not having a separate frame_id for orientation (which is measured w.r.t. a relatively fixed point) versus rates and accelerations (which are measured w.r.t. the body frame), and is not present in nav_msgs/Odometry which separates these two frames. Orientation data within sensor_msgs/Imu conforms to the same conventions as nav_msgs/Odometry, and is globally fixed in the NED and ENU frames.

Height Convention

The KVH reports height as the height above the WGS84 ellipsoid. This is the same height that sensor_msgs/NavSatFix expects. Other types of height include height above mean sea level (MSL) or height above ground (AGL) which is often used by aerial platforms.

Contributing

Below are instructions on how to complete several common tasks that may be required depending on your uses.

Quick Start Development

The KVH driver was written as a standalone driver, and the ROS node simply uses and recieves data from that driver. Below is the general structure of the ROS side.

`cpp

Developer Note: Notice that at the end we must run kvhDriver.SetPacketUpdated(packet_id, bool)`. The driver has been implemented so that you must explicitly state when you have read its data. If you wish to keep track of when new data appears, the driver must be used this way. In any case, the driver will always store the most recent packet of a specific type that it receives and will set the update status to true.

Adding a new packet type

The KVH offers a wide variety of packets. As such we have only implemented the ones that we found most useful. If you have others that you need, please see the instructions below for a guide on how to add them to the driver.

1. Add packet information to each set/map currently in src/kvh_driver/kvh_global_vars.cpp.

For the most part, you should be able to follow the predefined pattern, but you will be adding the packet_id to the supportedPackets_, the packet size to packetSize_, and the string literal of the packet type to packetTypeStr_. Note, this is essentially registering your desired packet.

Developer Note: The packetSize_ and packetTypeStr_ could be inferred from the packet_id, except for the fact that some packets exist that were not properly implemented in kvh's api, and which we have had to manually extend. We have chosen to make these fixes in our code instead of modifying their api.

2. Add packet-specific decoding function to DecodePacket function in src/kvh_driver/decode_packets.cpp

You should be able to just follow the pattern shown by the previously implemented packets, but will be included here for comprehensiveness.

`cpp

`

3. Add packet to initialization mapping in the Init function of src/kvh_driver/packet_storage.cpp

The packet storage is initialized with the requested packets at the beginning. You must add a line similar to the following to make sure the initialization succeeds.

`cpp

`

4. Add to the KvhPacketRequest that you are sending upon creation of the driver.

Limitations

Here is just a list of some currently know limitations of the current architecture

1. Hard coded packets. It is currently not in the design to allow users to customize which packets they do and do not want to receive.

2. Added complexity due to make changes to struct outside of API classes. Many of the steps shown in the *Adding a new packet type* section could be done automatically if we did not need to account for the possibility of extended structs. Currently the only example we have is the utm_fix struct type which extends the utm_position packet the kvh api has. We did this since we did not want to change their API in any way, but there may be a time the added complexity is not worth it.


2024-03-16 12:43