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: fault/http-fault-html.c
- Revision:
- 59:309e78f243dd
- Parent:
- 58:e5ab14ef6ea6
- Child:
- 77:4689596a2f3f
diff -r e5ab14ef6ea6 -r 309e78f243dd fault/http-fault-html.c
--- a/fault/http-fault-html.c Fri Mar 08 16:07:56 2019 +0000
+++ b/fault/http-fault-html.c Fri Mar 08 18:42:58 2019 +0000
@@ -17,12 +17,12 @@
int faultType = FaultTypeGet();
char text[20];
FaultTypeToString(faultType, sizeof(text), text);
- PageAddLabelledValue("Fault type", 17, text);
+ PageAddLabelledValue(17, "Fault type", text);
if (faultType)
{
FaultZoneToString(FaultZoneGet(), sizeof(text), text);
- PageAddLabelledValue("Fault zone", 17, text);
- PageAddLabelledInt("After point", 17, FaultPointGet());
+ PageAddLabelledValue(17, "Fault zone", text);
+ PageAddLabelledInt(17, "After point", FaultPointGet());
PageAddInputButton(0, "Clear fault", "clear", "/fault", "faultclear");
}
else