From 3e5946617f8a6792dda9ae7873b89295585dd3c7 Mon Sep 17 00:00:00 2001 From: Rick Sellens Date: Wed, 8 Jan 2020 13:28:38 -0500 Subject: [PATCH] more Doxygen --- Adafruit_GPS.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Adafruit_GPS.h b/Adafruit_GPS.h index e9b5814..c004f1e 100644 --- a/Adafruit_GPS.h +++ b/Adafruit_GPS.h @@ -103,6 +103,7 @@ #define MAXWAITSENTENCE 10 ///< how long to wait when we're looking for a response /**************************************************************************/ +/// type for resulting code from running check() typedef enum { NMEA_BAD = 0, ///< passed none of the checks NMEA_HAS_DOLLAR = 1, ///< has a dollar sign in the first position @@ -111,7 +112,7 @@ typedef enum { NMEA_HAS_SOURCE = 10, ///< has a recognized source ID NMEA_HAS_SENTENCE = 20, ///< has a recognized sentence ID NMEA_HAS_SENTENCE_P = 40 ///< has a recognized parseable sentence ID -} nmea_check_t; ///< resulting code from running check() +} nmea_check_t; /**************************************************************************/ /*!