A GPS disciplined clock
Dependencies: net lpc1768 crypto clock web log
lpc1768-this/restart-this.c@100:93f5b732f985, 2022-06-06 (annotated)
- Committer:
- andrewboyson
- Date:
- Mon Jun 06 11:10:58 2022 +0000
- Revision:
- 100:93f5b732f985
- Parent:
- 65:1412e3a1c5de
Publishing prior to moving to new online compiler
Who changed what in which revision?
User | Revision | Line number | New 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 | } |