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
Diff: log/web-log-query.c
- Revision:
- 110:8ab752842d25
- Parent:
- 109:3e82f62c7e1f
- Child:
- 111:aaa858678e34
--- a/log/web-log-query.c Mon Apr 29 14:45:30 2019 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-#include "http.h"
-#include "log.h"
-#include "settings.h"
-
-void WebLogQuery(char* pQuery)
-{
- while (pQuery)
- {
- char* pName;
- char* pValue;
- pQuery = HttpQuerySplit(pQuery, &pName, &pValue);
- if (HttpSameStr(pName, "clearlog" )) LogClear();
- if (HttpSameStr(pName, "chg-log-uart")) ChgLogUart();
- }
-}