From 5db4f58ab6a2f67ec5a9f5b76b65dd4eeb612ed7 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Wed, 3 Jul 2024 11:31:30 -0400 Subject: [PATCH] update hotspot and modem firmware submodules; fix some bad commenting; --- src/fw/hotspot | 2 +- src/fw/modem | 2 +- src/host/modem/Modem.h | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/fw/hotspot b/src/fw/hotspot index 7840a3da..994c3481 160000 --- a/src/fw/hotspot +++ b/src/fw/hotspot @@ -1 +1 @@ -Subproject commit 7840a3daf9cf8af1006e416c5b937abb860d134d +Subproject commit 994c348129d87877be53b945e37555a618a36075 diff --git a/src/fw/modem b/src/fw/modem index b1cc331d..1a31a3d5 160000 --- a/src/fw/modem +++ b/src/fw/modem @@ -1 +1 @@ -Subproject commit b1cc331d941b90dc4628a90138531f44de1be6f7 +Subproject commit 1a31a3d568994abb2d2eed84208960cc67645c68 diff --git a/src/host/modem/Modem.h b/src/host/modem/Modem.h index 211f5f84..fee4214e 100644 --- a/src/host/modem/Modem.h +++ b/src/host/modem/Modem.h @@ -552,28 +552,28 @@ namespace modem /** * @brief Writes DMR Slot 1 frame data to the DMR Slot 1 ring buffer. - * @param data Data to write to ring buffer. + * @param[in] data Data to write to ring buffer. * @param length Length of data to write. * @returns bool True, if data is written, otherwise false. */ bool writeDMRFrame1(const uint8_t* data, uint32_t length); /** * @brief Writes DMR Slot 2 frame data to the DMR Slot 2 ring buffer. - * @param data Data to write to ring buffer. + * @param[in] data Data to write to ring buffer. * @param length Length of data to write. * @returns bool True, if data is written, otherwise false. */ bool writeDMRFrame2(const uint8_t* data, uint32_t length); /** * @brief Writes P25 frame data to the P25 ring buffer. - * @param data Data to write to ring buffer. + * @param[in] data Data to write to ring buffer. * @param length Length of data to write. * @returns bool True, if data is written, otherwise false. */ bool writeP25Frame(const uint8_t* data, uint32_t length); /** * @brief Writes NXDN frame data to the NXDN ring buffer. - * @param data Data to write to ring buffer. + * @param[in] data Data to write to ring buffer. * @param length Length of data to write. * @returns bool True, if data is written, otherwise false. */