From d82be6dab0a0f9c9677ff0518a43b5771c67c4f7 Mon Sep 17 00:00:00 2001 From: Jonathan Diamond Date: Thu, 5 Oct 2023 13:15:47 -0700 Subject: [PATCH] Update documentation. --- README.md | 2 ++ examples/request_version/request_version.cc | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 026085fa..1b039db9 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,8 @@ The `examples/` directory contains example applications demonstrating how to use - `external_cmake_project` - Download a copy of the FusionEngine Client library from the public repository and import it into a CMake project using `FetchContent`. - `generate_data` - Generate a binary file containing a fixed set of messages. +- `lband_decode` - Example of decoding RTCM corrections from a recorded file containing LBandFrameMessage. +- `request_version` - Simulate sending a request for a version info message, and waiting for a response. - `tcp_client` - Connect to a device over TCP and display the received FusionEngine messages. - `udp_client` - Connect to a device over UDP and display the received FusionEngine messages. diff --git a/examples/request_version/request_version.cc b/examples/request_version/request_version.cc index c2b684e6..eca05435 100644 --- a/examples/request_version/request_version.cc +++ b/examples/request_version/request_version.cc @@ -1,5 +1,6 @@ /**************************************************************************/ /** -* @brief Message encode example. +* @brief Simulate sending a request for a version info message, and waiting for +* a response. * @file ******************************************************************************/