From 9ae3e509476c303f860f40ffd5259f6c50ac0ed8 Mon Sep 17 00:00:00 2001 From: Kosma Moczek Date: Thu, 4 Aug 2022 11:56:24 +0100 Subject: [PATCH] minmea.h: fix comment for minmea_scan() --- minmea.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/minmea.h b/minmea.h index bf04bd4..967e7b1 100644 --- a/minmea.h +++ b/minmea.h @@ -199,11 +199,14 @@ enum minmea_sentence_id minmea_sentence_id(const char *sentence, bool strict); * Scanf-like processor for NMEA sentences. Supports the following formats: * c - single character (char *) * d - direction, returned as 1/-1, default 0 (int *) - * f - fractional, returned as value + scale (int *, int *) + * f - fractional, returned as value + scale (struct minmea_float *) * i - decimal, default zero (int *) * s - string (char *) * t - talker identifier and type (char *) - * T - date/time stamp (int *, int *, int *) + * D - date (struct minmea_date *) + * T - time stamp (struct minmea_time *) + * _ - ignore this field + * ; - following fields are optional * Returns true on success. See library source code for details. */ bool minmea_scan(const char *sentence, const char *format, ...);