diff rvinterf/asyncshell/usercmd.c @ 31:5b4e345095c4

fc-shell help command implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Oct 2016 18:38:07 +0000
parents e7502631a0f9
children 8c7e86bc137e
line wrap: on
line diff
--- a/rvinterf/asyncshell/usercmd.c	Sun Oct 23 17:26:48 2016 +0000
+++ b/rvinterf/asyncshell/usercmd.c	Sun Oct 23 18:38:07 2016 +0000
@@ -13,6 +13,7 @@
 
 extern void cmd_disable();
 extern void cmd_enable();
+extern void cmd_help();
 extern void cmd_poweroff();
 extern void cmd_sendat();
 extern void cmd_send_interactive();
@@ -35,6 +36,7 @@
 	{"disable", cmd_disable},
 	{"enable", cmd_enable},
 	{"exit", cmd_exit},
+	{"help", cmd_help},
 	{"poweroff", cmd_poweroff},
 	{"quit", cmd_exit},
 	{"send", cmd_send_interactive},