{"id":2176,"date":"2016-08-11T17:46:58","date_gmt":"2016-08-11T16:46:58","guid":{"rendered":"https:\/\/ridgesolutions.ie\/?p=2176"},"modified":"2016-08-11T18:51:43","modified_gmt":"2016-08-11T17:51:43","slug":"code-to-test-u-blox-binary-gos-packet-checksum","status":"publish","type":"post","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/","title":{"rendered":"Code to test u-blox Binary GPS Packet Checksum"},"content":{"rendered":"<p>Here&#8217;s something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum!<\/p>\n<p>There must be an unwritten (or written?) software engineering rule which states that you should always check a checksum if one&#8217;s provided??!?<\/p>\n<p>Note: Make sure to pass only complete packets to this function, it assumes it has everything to work with!<\/p>\n<pre>\r\n\/\/\r\n\/\/\r\nbool is_checksum_ok(unsigned char* buf) {\r\n\r\n\t\/\/ Packet format:\r\n\t\/\/ SYNC<1> SYNC<1> CLASS<1> ID<1> LENGTH<2> PAYLOAD<length> CHKA<1> CHKB<1>\r\n\t\/\/ --------------- 4 ----------->|\r\n\t\/\/ --------------- 6 --------------------->|\r\n\t\/\/ --------------- 6 + length ---------------------------->|\r\n\r\n\t\/\/ Payload length field is little-endian (bless)\r\n\tunsigned short length = buf[5] << 8 | buf[4];\r\n\r\n\tunsigned char a = 0;\r\n\tunsigned char b = 0;\r\n\r\n\t\/\/ We calculate the checksum over the entire packet _except_\r\n\t\/\/ for the 2 bytes at the beginning and the 2 checksum bytes at\r\n\t\/\/ the end.\r\n\tfor (unsigned short i = 2; i < 6 + length; ++i) {\r\n\t\ta += buf[i];\r\n\t\tb += a;\r\n\t}\r\n\r\n\t\/\/ Pull out checksum bytes\r\n\tunsigned char ra = buf[6 + length];\r\n\tunsigned char rb = buf[6 + 1 + length];\r\n\r\n\t\/\/ and compare\r\n\treturn a = ra &#038;&#038; b == rb;\r\n}\r\n\/\/\r\n\/\/\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Here&#8217;s something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[365,182,295,364],"class_list":["post-2176","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-checksum","tag-code","tag-gps","tag-ublox"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Here&#039;s something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kevin Godden\"\/>\n\t<meta name=\"google-site-verification\" content=\"Kyj52YLp6GOPA44PVBffo9fjW8rgWHYYRF0ZYjfy6ss\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Systems and Embedded Software Engineering, Ireland. | Some thoughts of a busy Computer Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Code to test u-blox Binary GPS Packet Checksum\" \/>\n\t\t<meta property=\"og:description\" content=\"Here&#039;s something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-08-11T16:46:58+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-08-11T17:51:43+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Code to test u-blox Binary GPS Packet Checksum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Here&#039;s something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#article\",\"name\":\"Code to test u-blox Binary GPS Packet Checksum\",\"headline\":\"Code to test u-blox Binary GPS Packet Checksum\",\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/ridge_logo1.jpg\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#articleImage\",\"width\":400,\"height\":81},\"datePublished\":\"2016-08-11T17:46:58+00:00\",\"dateModified\":\"2016-08-11T18:51:43+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#webpage\"},\"articleSection\":\"Uncategorized, checksum, code, gps, uBlox\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/#listItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#listItem\",\"name\":\"Code to test u-blox Binary GPS Packet Checksum\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#listItem\",\"position\":3,\"name\":\"Code to test u-blox Binary GPS Packet Checksum\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\",\"name\":\"Ridge Solutions, Software Development and Software Engineering, Ireland.\",\"description\":\"Some thoughts of a busy Computer Engineer\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/ridge_logo1.jpg\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#organizationLogo\",\"width\":400,\"height\":81},\"image\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/\",\"name\":\"Kevin Godden\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d2833f41e59a25cf2a9741a05ec383bfdd278762a5e0798a90940e7ab0a107a2?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kevin Godden\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#webpage\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/\",\"name\":\"Code to test u-blox Binary GPS Packet Checksum\",\"description\":\"Here's something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2016\\\/08\\\/11\\\/code-to-test-u-blox-binary-gos-packet-checksum\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"datePublished\":\"2016-08-11T17:46:58+00:00\",\"dateModified\":\"2016-08-11T18:51:43+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/\",\"name\":\"Ridge Solutions, Software Development and Software Engineering, Ireland.\",\"description\":\"Some thoughts of a busy Computer Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Code to test u-blox Binary GPS Packet Checksum","description":"Here's something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering","canonical_url":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"Kyj52YLp6GOPA44PVBffo9fjW8rgWHYYRF0ZYjfy6ss","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#article","name":"Code to test u-blox Binary GPS Packet Checksum","headline":"Code to test u-blox Binary GPS Packet Checksum","author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"publisher":{"@id":"https:\/\/www.ridgesolutions.ie\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ridgesolutions.ie\/wp-content\/uploads\/2013\/09\/ridge_logo1.jpg","@id":"https:\/\/www.ridgesolutions.ie\/#articleImage","width":400,"height":81},"datePublished":"2016-08-11T17:46:58+00:00","dateModified":"2016-08-11T18:51:43+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#webpage"},"isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#webpage"},"articleSection":"Uncategorized, checksum, code, gps, uBlox"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","position":1,"name":"Home","item":"https:\/\/www.ridgesolutions.ie","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/#listItem","name":"Uncategorized"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/#listItem","position":2,"name":"Uncategorized","item":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#listItem","name":"Code to test u-blox Binary GPS Packet Checksum"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#listItem","position":3,"name":"Code to test u-blox Binary GPS Packet Checksum","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/#listItem","name":"Uncategorized"}}]},{"@type":"Organization","@id":"https:\/\/www.ridgesolutions.ie\/#organization","name":"Ridge Solutions, Software Development and Software Engineering, Ireland.","description":"Some thoughts of a busy Computer Engineer","url":"https:\/\/www.ridgesolutions.ie\/","logo":{"@type":"ImageObject","url":"https:\/\/www.ridgesolutions.ie\/wp-content\/uploads\/2013\/09\/ridge_logo1.jpg","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#organizationLogo","width":400,"height":81},"image":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author","url":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/","name":"Kevin Godden","image":{"@type":"ImageObject","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d2833f41e59a25cf2a9741a05ec383bfdd278762a5e0798a90940e7ab0a107a2?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kevin Godden"}},{"@type":"WebPage","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#webpage","url":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/","name":"Code to test u-blox Binary GPS Packet Checksum","description":"Here's something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/#website"},"breadcrumb":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/#breadcrumblist"},"author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"creator":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"datePublished":"2016-08-11T17:46:58+00:00","dateModified":"2016-08-11T18:51:43+00:00"},{"@type":"WebSite","@id":"https:\/\/www.ridgesolutions.ie\/#website","url":"https:\/\/www.ridgesolutions.ie\/","name":"Ridge Solutions, Software Development and Software Engineering, Ireland.","description":"Some thoughts of a busy Computer Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.ridgesolutions.ie\/#organization"}}]},"og:locale":"en_US","og:site_name":"Systems and Embedded Software Engineering, Ireland. | Some thoughts of a busy Computer Engineer","og:type":"article","og:title":"Code to test u-blox Binary GPS Packet Checksum","og:description":"Here's something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering","og:url":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/","article:published_time":"2016-08-11T16:46:58+00:00","article:modified_time":"2016-08-11T17:51:43+00:00","twitter:card":"summary","twitter:title":"Code to test u-blox Binary GPS Packet Checksum","twitter:description":"Here's something random for a Thursday, the following is some simple C++ code for checking the checksum of a u-blox binary GPS packet, for some reason we get quite a few packet data errors, so it turns out that it is important to check the checksum! There must be an unwritten (or written?) software engineering"},"aioseo_meta_data":{"post_id":"2176","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-09-13 21:49:31","updated":"2025-07-15 23:19:03","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ridgesolutions.ie\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/\" title=\"Uncategorized\">Uncategorized<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCode to test u-blox Binary GPS Packet Checksum\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.ridgesolutions.ie"},{"label":"Uncategorized","link":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/uncategorized\/"},{"label":"Code to test u-blox Binary GPS Packet Checksum","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2016\/08\/11\/code-to-test-u-blox-binary-gos-packet-checksum\/"}],"_links":{"self":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/2176","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/comments?post=2176"}],"version-history":[{"count":0,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/2176\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/media?parent=2176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/categories?post=2176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/tags?post=2176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}