{"id":2954,"date":"2023-11-30T18:50:58","date_gmt":"2023-11-30T17:50:58","guid":{"rendered":"https:\/\/www.ridgesolutions.ie\/?p=2954"},"modified":"2023-11-30T19:39:51","modified_gmt":"2023-11-30T18:39:51","slug":"ntp-with-gps-and-pps-working-without-network-clock","status":"publish","type":"post","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/","title":{"rendered":"NTP with GPS and PPS working without network clock"},"content":{"rendered":"<p>Is it possible to have a PPS disciplined NTP server without a network reference clock or network connection?<\/p>\n<p>While doing some camera synchronisation and timestamp testing, I setup a Raspberry Pi NTP server with PPS using an <a href=\"https:\/\/www.adafruit.com\/\">Adafruit<\/a> GPS hat so that I could sync my cameras&#8217; time to NTP, trigger them using the PPS signal, generate UTC timestamps and check the timestamps against the expected UTC second boundaries.<\/p>\n<p>As part of this the question once again arose &#8211; Can I configure an NTP server with GPS time and PPS without having to configure a network reference clock along with the GPS and PPS sources?\u00a0 This was important as my test setup didn&#8217;t have access to an external network, and yet I wanted typical NTP offsets of &lt; 100us.<\/p>\n<p>Well with quite a bit of messing I finally got it working, at this stage there are lots of <a href=\"http:\/\/www.satsignal.eu\/ntp\/Raspberry-Pi-NTP.html\">pages<\/a> that detail how to setup a Pi as an NTP server with PPS, some mention that you must have a network reference and some mention that you don&#8217;t &#8211; I had to do a lot of digging and a lot of messing to get to the bottom of things.<\/p>\n<p>Amusingly, NTP configuration is something that ChatGPT is simply terrible at &#8211; don&#8217;t use it for this, it will just waste your time!<\/p>\n<p>I had lots of problems, but the 2 most persistent was:<\/p>\n<ol>\n<li>The PPS source being marked as a false ticker (with an x to its left in the ntpq -p output)<\/li>\n<li>The PPS source not being referenced at all, &#8220;<strong>when<\/strong>&#8221; would remain at &#8220;-&#8220;<\/li>\n<\/ol>\n<p>For ages, I lurched between problems 1 and 2&#8230;<\/p>\n<p>Eventually I got it working for my setup.\u00a0 The trick to get it working for me is that:<\/p>\n<ul>\n<li>I needed 3 reference clocks in my setup for the PPS source to be used: PPS time, GPS time and a 3rd reference, normally this is a network NTP server but I found that configuring the local clock (127.127.1.0) worked instead.<\/li>\n<li>I needed to be careful with my stratum settings, what worked for me was to put the local clock at stratum 15, GPS at stratum 10 and PPS at stratum 0.<\/li>\n<li>Marked the PPS source as <strong>prefer <\/strong>(and not the GPS source as is often recommended?)<strong><br \/>\n<\/strong><\/li>\n<\/ul>\n<p>My working configuration:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tos mindist 0.500\r\n\r\n# Local Clock\r\nserver 127.127.1.0\r\nfudge 127.127.1.0 stratum 15\r\n\r\n# GPS\/NMEA Source from Hat\r\nserver 127.127.28.0 minpoll 4 maxpoll 4 prefer iburst\r\nfudge 127.127.28.0 time1 0.000 refid GPS stratum 10\r\n\r\n# PPS Source, stratum 0 and prefer\r\nserver 127.127.22.0 minpoll 4 maxpoll 4\r\nfudge 127.127.22.0 refid PPS stratum 0 flag3 1 flag4 1 prefer\r\n<\/pre>\n<p>I deliberately left the time offset for the GPS source at 0.0 rather than trying to chase down the time packet offset so that I could see an &#8220;honest&#8221; offset value in the ntpq output:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">\u00a0remote refid st t when poll reach delay offset jitter\r\n==============================================================================\r\nLOCAL(0) .LOCL. 15 l 58m 64 0 0.000 0.000 0.000\r\n*SHM(0) .GPS. 10 l 16 16 377 0.000 -106.45 1.145\r\noPPS(0) .PPS. 0 l 15 16 377 0.000 -0.001 0.001\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Is it possible to have a PPS disciplined NTP server without a network reference clock or network connection? While doing some camera synchronisation and timestamp testing, I setup a Raspberry Pi NTP server with PPS using an Adafruit GPS hat so that I could sync my cameras&#8217; time to NTP, trigger them using the PPS [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[301],"tags":[295,358,373],"class_list":["post-2954","post","type-post","status-publish","format-standard","hentry","category-by-kevin-godden","tag-gps","tag-ntp","tag-pps"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working\" \/>\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\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/\" \/>\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=\"NTP with GPS and PPS working without network clock\" \/>\n\t\t<meta property=\"og:description\" content=\"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-11-30T17:50:58+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-11-30T18:39:51+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"NTP with GPS and PPS working without network clock\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working\" \/>\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\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#article\",\"name\":\"NTP with GPS and PPS working without network clock\",\"headline\":\"NTP with GPS and PPS working without network clock\",\"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\":\"2023-11-30T18:50:58+00:00\",\"dateModified\":\"2023-11-30T19:39:51+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#webpage\"},\"articleSection\":\"By Ridge Solutions, gps, ntp, pps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#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\\\/by-kevin-godden\\\/#listItem\",\"name\":\"By Ridge Solutions\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/by-kevin-godden\\\/#listItem\",\"position\":2,\"name\":\"By Ridge Solutions\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/by-kevin-godden\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#listItem\",\"name\":\"NTP with GPS and PPS working without network clock\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#listItem\",\"position\":3,\"name\":\"NTP with GPS and PPS working without network clock\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/by-kevin-godden\\\/#listItem\",\"name\":\"By Ridge Solutions\"}}]},{\"@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\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#organizationLogo\",\"width\":400,\"height\":81},\"image\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#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\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#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\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#webpage\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/\",\"name\":\"NTP with GPS and PPS working without network clock\",\"description\":\"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2023\\\/11\\\/30\\\/ntp-with-gps-and-pps-working-without-network-clock\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"datePublished\":\"2023-11-30T18:50:58+00:00\",\"dateModified\":\"2023-11-30T19:39:51+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":"NTP with GPS and PPS working without network clock","description":"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working","canonical_url":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/","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\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#article","name":"NTP with GPS and PPS working without network clock","headline":"NTP with GPS and PPS working without network clock","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":"2023-11-30T18:50:58+00:00","dateModified":"2023-11-30T19:39:51+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#webpage"},"isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#webpage"},"articleSection":"By Ridge Solutions, gps, ntp, pps"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#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\/by-kevin-godden\/#listItem","name":"By Ridge Solutions"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/by-kevin-godden\/#listItem","position":2,"name":"By Ridge Solutions","item":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/by-kevin-godden\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#listItem","name":"NTP with GPS and PPS working without network clock"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#listItem","position":3,"name":"NTP with GPS and PPS working without network clock","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/by-kevin-godden\/#listItem","name":"By Ridge Solutions"}}]},{"@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\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#organizationLogo","width":400,"height":81},"image":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#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\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#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\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#webpage","url":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/","name":"NTP with GPS and PPS working without network clock","description":"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/#website"},"breadcrumb":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/#breadcrumblist"},"author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"creator":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"datePublished":"2023-11-30T18:50:58+00:00","dateModified":"2023-11-30T19:39:51+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":"NTP with GPS and PPS working without network clock","og:description":"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working","og:url":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/","article:published_time":"2023-11-30T17:50:58+00:00","article:modified_time":"2023-11-30T18:39:51+00:00","twitter:card":"summary","twitter:title":"NTP with GPS and PPS working without network clock","twitter:description":"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working"},"aioseo_meta_data":{"post_id":"2954","title":null,"description":"Is it possible to have a PPS and GPS disciplined NTP server without a network reference clock or network connection? I got it working","keywords":[],"keyphrases":{"focus":[],"additional":[]},"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":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"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":"default","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-11-30 17:05:51","updated":"2026-08-07 16:46:46","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\/by-kevin-godden\/\" title=\"By Ridge Solutions\">By Ridge Solutions<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tNTP with GPS and PPS working without network clock\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.ridgesolutions.ie"},{"label":"By Ridge Solutions","link":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/by-kevin-godden\/"},{"label":"NTP with GPS and PPS working without network clock","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2023\/11\/30\/ntp-with-gps-and-pps-working-without-network-clock\/"}],"_links":{"self":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/2954","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=2954"}],"version-history":[{"count":0,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/2954\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/media?parent=2954"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/categories?post=2954"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/tags?post=2954"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}