From 29d24c916b36d047ff0478565d03844872416adf Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 10 Jul 2020 08:51:37 +0200 Subject: [PATCH] [XBee] Added Doxygen TODOs --- src/modules/XBee/XBee.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/XBee/XBee.cpp b/src/modules/XBee/XBee.cpp index 894c32b3..9b1abe73 100644 --- a/src/modules/XBee/XBee.cpp +++ b/src/modules/XBee/XBee.cpp @@ -391,7 +391,7 @@ void XBee::sendApiFrame(uint8_t type, uint8_t id, uint8_t* data, uint16_t length } int16_t XBee::readApiFrame(uint8_t frameID, uint8_t codePos, uint16_t timeout) { - // TODO: modemStatus frames may be sent at any time, interfering with frame parsing. Add check to make sure this does not happen. + /// \todo modemStatus frames may be sent at any time, interfering with frame parsing. Add check to make sure this does not happen. // get number of bytes in response (must be enough to read the length field uint16_t numBytes = getNumBytes(timeout/2, 3);