A GPS disciplined clock

Dependencies:   net lpc1768 crypto clock web log

Committer:
andrewboyson
Date:
Fri Feb 15 17:00:56 2019 +0000
Revision:
36:2983e45eeb49
Parent:
35:a535b65203a9
Updated minor stuff in gps module

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