A GPS disciplined clock

Dependencies:   net lpc1768 crypto clock web log

Committer:
andrewboyson
Date:
Thu Feb 27 13:04:47 2020 +0000
Revision:
90:9b8bc951c6d9
Parent:
59:d2d25c2265f8
Updated libraries

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 27:eb5728b9052b 1 #include "http.h"
andrewboyson 27:eb5728b9052b 2 #include "clkgov.h"
andrewboyson 27:eb5728b9052b 3 #include "clkutc.h"
andrewboyson 27:eb5728b9052b 4 #include "led.h"
andrewboyson 27:eb5728b9052b 5 #include "settings.h"
andrewboyson 27:eb5728b9052b 6
andrewboyson 55:a1bd0572c8b6 7 void WebHomeQuery(char* pQuery)
andrewboyson 27:eb5728b9052b 8 {
andrewboyson 27:eb5728b9052b 9 while (pQuery)
andrewboyson 27:eb5728b9052b 10 {
andrewboyson 27:eb5728b9052b 11 char* pName;
andrewboyson 27:eb5728b9052b 12 char* pValue;
andrewboyson 29:4fe0f237fd61 13 pQuery = HttpQuerySplit(pQuery, &pName, &pValue);
andrewboyson 43:bf39371b4576 14 int value = HttpQueryValueAsInt(pValue);
andrewboyson 27:eb5728b9052b 15 }
andrewboyson 27:eb5728b9052b 16 }
andrewboyson 27:eb5728b9052b 17