aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MSVS/demo.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/Win32-MSVS/demo.c')
-rw-r--r--demos/Win32-MSVS/demo.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/demos/Win32-MSVS/demo.c b/demos/Win32-MSVS/demo.c
index 7f8bd6903..5a3bf167c 100644
--- a/demos/Win32-MSVS/demo.c
+++ b/demos/Win32-MSVS/demo.c
@@ -182,7 +182,6 @@ static t_msg ShellThread(void *arg) {
PrintLineFDD(sd, " exit - Logout from ChibiOS/RT\r\n");
PrintLineFDD(sd, " time - Prints the system timer value\r\n");
PrintLineFDD(sd, " hello - Runs the Hello World demo thread\r\n");
- PrintLineFDD(sd, " test - Runs the System Test thread\r\n");
}
else if (stricmp(lp, "exit") == 0) {
if (checkend(sd))
@@ -204,14 +203,6 @@ static t_msg ShellThread(void *arg) {
if (chThdWait(tp))
break; // Lost connection while executing the hello thread.
}
- else if (stricmp(lp, "test") == 0) {
- if (checkend(sd))
- continue;
- tp = chThdCreate(NORMALPRIO, 0, tarea, sizeof(tarea),
- TestThread, arg);
- if (chThdWait(tp))
- break; // Lost connection while executing the hello thread.
- }
else {
PrintLineFDD(sd, lp);
PrintLineFDD(sd, " ?\r\n");