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:
36:2983e45eeb49
Updated LPC1768 library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:67724a462d86 1 #include <stdbool.h>
andrewboyson 0:67724a462d86 2 #include <stdint.h>
andrewboyson 35:a535b65203a9 3 #include <stdarg.h>
andrewboyson 0:67724a462d86 4
andrewboyson 35:a535b65203a9 5 extern bool GpsTrace;
andrewboyson 36:2983e45eeb49 6 extern bool GpsVerbose;
andrewboyson 35:a535b65203a9 7 extern int GpsLog(const char *fmt, ...);
andrewboyson 36:2983e45eeb49 8 extern int GpsLogVerbose(const char *fmt, ...);
andrewboyson 0:67724a462d86 9
andrewboyson 35:a535b65203a9 10 extern void GpsHadPps(void);
andrewboyson 0:67724a462d86 11
andrewboyson 35:a535b65203a9 12 extern void GpsInit(void);
andrewboyson 35:a535b65203a9 13 extern void GpsMain(void);
andrewboyson 35:a535b65203a9 14