A GPS disciplined clock

Dependencies:   net lpc1768 crypto clock web log

Committer:
andrewboyson
Date:
Wed May 06 18:40:02 2020 +0000
Revision:
97:af023452967f
Parent:
65:1412e3a1c5de
Changed PPS timeout to 8000ms (it was 1000ms)

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 }