Shell exit fix.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9274 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-04-10 12:01:22 +00:00
parent c6da283acd
commit 524016ca3a
1 changed files with 2 additions and 9 deletions

View File

@ -156,19 +156,12 @@ THD_FUNCTION(shellThread, p) {
}
args[n] = NULL;
if (cmd != NULL) {
if (strcmp(cmd, "exit") == 0) {
if (n > 0) {
usage(chp, "exit");
continue;
}
break;
}
else if (strcmp(cmd, "help") == 0) {
if (strcmp(cmd, "help") == 0) {
if (n > 0) {
usage(chp, "help");
continue;
}
chprintf(chp, "Commands: help exit ");
chprintf(chp, "Commands: help ");
list_commands(chp, shell_local_commands);
if (scp != NULL)
list_commands(chp, scp);