This repository has been archived by the owner on May 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from 107-systems/decode-nmea-gpa
Decode NMEA GxGGA messages
- Loading branch information
Showing
21 changed files
with
1,001 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
extras/test/src/ArduinoNmeaParser/test_OnGgaUpdateFunc.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/** | ||
* This software is distributed under the terms of the MIT License. | ||
* Copyright (c) 2020 LXRobotics. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/107-Arduino-NMEA-Parser/graphs/contributors. | ||
*/ | ||
|
||
/************************************************************************************** | ||
* INCLUDE | ||
**************************************************************************************/ | ||
|
||
#include <string.h> | ||
|
||
#include <string> | ||
#include <algorithm> | ||
|
||
#include <catch.hpp> | ||
|
||
#include <ArduinoNmeaParser.h> | ||
|
||
/************************************************************************************** | ||
* GLOBAL VARIABLES | ||
**************************************************************************************/ | ||
|
||
static bool on_gga_update_called = false; | ||
|
||
/************************************************************************************** | ||
* FUNCTION DEFINITION | ||
**************************************************************************************/ | ||
|
||
static void encode(ArduinoNmeaParser & parser, std::string const & nmea) | ||
{ | ||
std::for_each(std::begin(nmea), | ||
std::end(nmea), | ||
[&parser](char const c) | ||
{ | ||
parser.encode(c); | ||
}); | ||
} | ||
|
||
void onGgaUpdate(nmea::GgaData const data) | ||
{ | ||
on_gga_update_called = true; | ||
|
||
REQUIRE(data.source == nmea::GgaSource::GPS); | ||
|
||
REQUIRE(data.time_utc.hour == 11); | ||
REQUIRE(data.time_utc.minute == 19); | ||
REQUIRE(data.time_utc.second == 8); | ||
REQUIRE(data.time_utc.microsecond == 952); | ||
|
||
REQUIRE(data.latitude == Approx(48.633433)); | ||
REQUIRE(data.longitude == Approx(13.026492)); | ||
|
||
REQUIRE(data.fix_quality == nmea::FixQuality::GPS_Fix); | ||
|
||
REQUIRE(data.num_satellites == 5); | ||
REQUIRE(data.hdop == Approx(2.4)); | ||
REQUIRE(data.altitude == Approx(454.7)); | ||
REQUIRE(data.geoidal_separation == Approx(46.6)); | ||
|
||
REQUIRE(data.dgps_age == Approx(0.0)); | ||
REQUIRE(strncmp(data.dgps_id, "0000", 4) == 0); | ||
} | ||
|
||
/************************************************************************************** | ||
* TEST CODE | ||
**************************************************************************************/ | ||
|
||
TEST_CASE("Testing execution of OnGgaUpdateFunc when a full GxGGA message has been received", "[OnGgaUpdateFunc-01]") | ||
{ | ||
ArduinoNmeaParser parser(nullptr, onGgaUpdate); | ||
std::string const GPGGA = "$GPGGA,111908.952,4838.0060,N,01301.5895,E,1,05,2.4,454.7,M,46.6,M,0.0,0000*7A\r\n"; | ||
encode(parser, GPGGA); | ||
REQUIRE(on_gga_update_called == true); | ||
} |
77 changes: 77 additions & 0 deletions
77
extras/test/src/ArduinoNmeaParser/test_OnRmcUpdateFunc.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/** | ||
* This software is distributed under the terms of the MIT License. | ||
* Copyright (c) 2020 LXRobotics. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/107-Arduino-NMEA-Parser/graphs/contributors. | ||
*/ | ||
|
||
/************************************************************************************** | ||
* INCLUDE | ||
**************************************************************************************/ | ||
|
||
#include <string.h> | ||
|
||
#include <string> | ||
#include <algorithm> | ||
|
||
#include <catch.hpp> | ||
|
||
#include <ArduinoNmeaParser.h> | ||
|
||
/************************************************************************************** | ||
* GLOBAL VARIABLES | ||
**************************************************************************************/ | ||
|
||
static bool on_rmc_update_called = false; | ||
|
||
/************************************************************************************** | ||
* FUNCTION DEFINITION | ||
**************************************************************************************/ | ||
|
||
static void encode(ArduinoNmeaParser & parser, std::string const & nmea) | ||
{ | ||
std::for_each(std::begin(nmea), | ||
std::end(nmea), | ||
[&parser](char const c) | ||
{ | ||
parser.encode(c); | ||
}); | ||
} | ||
|
||
void onRmcUpdate(nmea::RmcData const data) | ||
{ | ||
on_rmc_update_called = true; | ||
|
||
REQUIRE(data.source == nmea::RmcSource::GPS); | ||
|
||
REQUIRE(data.time_utc.hour == 5); | ||
REQUIRE(data.time_utc.minute == 28); | ||
REQUIRE(data.time_utc.second == 56); | ||
REQUIRE(data.time_utc.microsecond == 105); | ||
|
||
REQUIRE(data.is_valid == true); | ||
|
||
REQUIRE(data.latitude == Approx(52.514567)); | ||
REQUIRE(data.longitude == Approx(13.350933)); | ||
|
||
REQUIRE(data.speed == Approx(44.088f)); | ||
REQUIRE(data.course == Approx(206.4f)); | ||
|
||
REQUIRE(data.date.day == 8); | ||
REQUIRE(data.date.month == 7); | ||
REQUIRE(data.date.year == 2020); | ||
|
||
REQUIRE(data.magnetic_variation == Approx(0.0)); | ||
} | ||
|
||
/************************************************************************************** | ||
* TEST CODE | ||
**************************************************************************************/ | ||
|
||
TEST_CASE("Testing execution of OnRmcUpdateFunc when a full GxRMC message has been received", "[OnRmcUpdateFunc-01]") | ||
{ | ||
ArduinoNmeaParser parser(onRmcUpdate, nullptr); | ||
std::string const GPRMC = ("$GPRMC,052856.105,A,5230.874,N,01321.056,E,085.7,206.4,080720,000.0,W*78\r\n"); | ||
encode(parser, GPRMC); | ||
REQUIRE(on_rmc_update_called == true); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.