A GPS disciplined clock

Dependencies:   net lpc1768 crypto clock web log

Committer:
andrewboyson
Date:
Mon Nov 18 08:51:46 2019 +0000
Revision:
84:baec7c1f5618
Parent:
65:1412e3a1c5de
Updated LPC1768 library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 65:1412e3a1c5de 1 #include "restart.h"
andrewboyson 65:1412e3a1c5de 2 #include "restart-this.h"
andrewboyson 65:1412e3a1c5de 3
andrewboyson 65:1412e3a1c5de 4 const char* RestartThisGetZoneString()
andrewboyson 65:1412e3a1c5de 5 {
andrewboyson 65:1412e3a1c5de 6 switch (RestartGetLastCause())
andrewboyson 65:1412e3a1c5de 7 {
andrewboyson 65:1412e3a1c5de 8 case RESTART_ZONE_GPS: return "GPS" ;
andrewboyson 65:1412e3a1c5de 9 default : return "Unknown";
andrewboyson 65:1412e3a1c5de 10 }
andrewboyson 65:1412e3a1c5de 11 }