summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/umon/cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/umon/cli.h')
-rw-r--r--c/src/lib/libbsp/shared/umon/cli.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/shared/umon/cli.h b/c/src/lib/libbsp/shared/umon/cli.h
index 0cf2bb1833..0e1689db26 100644
--- a/c/src/lib/libbsp/shared/umon/cli.h
+++ b/c/src/lib/libbsp/shared/umon/cli.h
@@ -1,7 +1,12 @@
-/*
- * cli.h - Header file for Command Line Interface related stuff
+/**
+ * @file
*
- * Based upon code from MicroMonitor 1.17 from http://www.umonfw.com/
+ * @ingroup shared_cli
+ *
+ * @brief Header file for Command Line Interface related stuff
+ */
+
+/* Based upon code from MicroMonitor 1.17 from http://www.umonfw.com/
* which includes this notice:
*
**************************************************************************
@@ -38,8 +43,14 @@
extern "C" {
#endif
-/* Command table structure used by the monitor:
+/**
+ * @defgroup shared_cli Command table structure
+ *
+ * @ingroup shared_umon
+ *
+ * @brief Command table structure used by the monitor:
*/
+
struct monCommand {
char *name; /* Name of command seen by user. */
int (*func)(int,char **); /* Called when command is invoked. */