From 46fac8c85160f6976b73cbaedec2fa5105790701 Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Sat, 12 Nov 2022 18:42:06 -0300 Subject: [PATCH] Fix CI crash because switch() as missing NMEA sentences --- examples/gps/gps_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/gps/gps_main.c b/examples/gps/gps_main.c index 9a76ba41a..02c12eedf 100644 --- a/examples/gps/gps_main.c +++ b/examples/gps/gps_main.c @@ -133,6 +133,9 @@ int main(int argc, FAR char *argv[]) case MINMEA_SENTENCE_GLL: case MINMEA_SENTENCE_GST: case MINMEA_SENTENCE_GSV: + case MINMEA_SENTENCE_GBS: + case MINMEA_SENTENCE_VTG: + case MINMEA_SENTENCE_ZDA: { } break;