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: page/web-nav-base.c
- Revision:
- 109:3e82f62c7e1f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/page/web-nav-base.c Mon Apr 29 14:45:30 2019 +0000
@@ -0,0 +1,14 @@
+#include "web-add.h"
+#include "web-page-base.h"
+
+void WebNavBase(int page)
+{
+ WebAddNavItem(page == CLOCK_PAGE, "/clock", "Clock" );
+ WebAddNavItem(page == FAULT_PAGE, "/fault", "Fault" );
+ WebAddNavItem(page == NET_PAGE, "/net", "Net" );
+ WebAddNavItem(page == NET4_PAGE, "/net4", "Net IPv4" );
+ WebAddNavItem(page == NET6_PAGE, "/net6", "Net IPv6" );
+ WebAddNavItem(page == TRACE_PAGE, "/trace", "Net Trace");
+ WebAddNavItem(page == LOG_PAGE, "/log", "Log" );
+ WebAddNavItem(page == FIRMWARE_PAGE, "/firmware", "Firmware" );
+}
\ No newline at end of file