summaryrefslogtreecommitdiff
path: root/software
diff options
context:
space:
mode:
authorChristian Pointner <equinox@mur.at>2013-12-03 20:46:50 +0000
committerChristian Pointner <equinox@mur.at>2013-12-03 20:46:50 +0000
commit450250f7d052f6921366bb30da7a3a2127e954cc (patch)
treeb6fcfe3220f2b5333a71fe124cf2892147baec1a /software
parentmain.c cleanup (diff)
print warning for not implemented bootloader command
git-svn-id: https://svn.spreadspace.org/mur.sat@854 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'software')
-rw-r--r--software/mpu/usb-cdc-shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/software/mpu/usb-cdc-shell.c b/software/mpu/usb-cdc-shell.c
index b78f035..1670d86 100644
--- a/software/mpu/usb-cdc-shell.c
+++ b/software/mpu/usb-cdc-shell.c
@@ -265,9 +265,9 @@ static void cmd_bootloader(BaseSequentialStream *chp, int argc, char *argv[])
return;
}
shell_return_code = MPU_BOOTLOADER;
- chprintf(chp, "rebooting to bootloader ...\r\n");
+ chprintf(chp, "rebooting to bootloader ... ignored - not implemented!!\r\n");
- shellExit(RDY_OK);
+ /* shellExit(RDY_OK); */
}
static const ShellCommand commands[] = {