A GPS disciplined clock

Dependencies:   net lpc1768 crypto clock web log

Revision:
65:1412e3a1c5de
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lpc1768-this/restart-this.c	Thu May 09 07:53:49 2019 +0000
@@ -0,0 +1,11 @@
+#include "restart.h"
+#include "restart-this.h"
+
+const char* RestartThisGetZoneString()
+{
+    switch (RestartGetLastCause())
+    {
+        case RESTART_ZONE_GPS: return "GPS"    ;
+        default              : return "Unknown";
+    }
+}