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: Terminal
Diff: menuitem.h
- Revision:
- 5:4a240f717b9d
- Parent:
- 4:800a75ffea3c
- Child:
- 6:e992366d0684
--- a/menuitem.h Fri May 01 16:12:44 2015 +0000
+++ b/menuitem.h Sat May 02 00:41:23 2015 +0000
@@ -98,6 +98,17 @@
AnalogIn m_io;
};
+
+class MenuNotImplementedAction:public MenuAction {
+public:
+ MenuNotImplementedAction(char const *name): MenuAction(name)
+ {}
+
+ virtual void getString(char *buf, int bufLen) {
+ snprintf(buf, bufLen, "N/A");
+ }
+};
+
class MenuTestAction: public MenuAction {
public:
MenuTestAction(char const *name):