Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: net lpc1768 crypto clock web log
web-this/nmea/web-nmea-query.c
- Committer:
- andrewboyson
- Date:
- 2022-06-06
- Revision:
- 100:93f5b732f985
- Parent:
- 81:a1de28caf11a
File content as of revision 100:93f5b732f985:
#include "http.h"
#include "settings.h"
#include "gps.h"
void WebNmeaQuery(char* pQuery)
{
while (pQuery)
{
char* pName;
char* pValue;
pQuery = HttpQuerySplit(pQuery, &pName, &pValue);
int value = HttpQueryValueAsInt(pValue);
if (HttpSameStr(pName, "reset" )) GpsInit();
if (HttpSameStr(pName, "sensorheight")) SetSensorHeight(value);
if (HttpSameStr(pName, "nmeamsgtrace")) ChgNmeaMsgTrace();
if (HttpSameStr(pName, "nmeacmdtrace")) ChgNmeaCmdTrace();
if (HttpSameStr(pName, "gpstrace")) ChgGpsTrace();
if (HttpSameStr(pName, "gpsverbose")) ChgGpsVerbose();
}
}