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.
Dependents: oldheating gps motorhome heating
base/firmware/web-firmware-query.c
- Committer:
- andrewboyson
- Date:
- 2020-03-11
- Revision:
- 133:98c6bf14bc37
- Parent:
- 118:53430a2a2595
File content as of revision 133:98c6bf14bc37:
#include "http.h"
#include "restart.h"
#include "web-pages-base.h"
void WebFirmwareQuery(char* pQuery)
{
while (pQuery)
{
char* pName;
char* pValue;
pQuery = HttpQuerySplit(pQuery, &pName, &pValue);
int value = HttpQueryValueAsInt(pValue);
if (HttpSameStr(pName, "restart")) Restart(RESTART_CAUSE_SOFTWARE_RESET);
}
}