This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new 46fac8c85 Fix CI crash because switch() as missing NMEA sentences 46fac8c85 is described below commit 46fac8c85160f6976b73cbaedec2fa5105790701 Author: Alan Carvalho de Assis <acas...@gmail.com> AuthorDate: Sat Nov 12 18:42:06 2022 -0300 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;