aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MSVS/demo.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-07 10:49:59 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-07 10:49:59 +0000
commit14d3b059c225769038a0f3538f491cf6099dbb3e (patch)
treeb4049b72b26d9247cdeb4adbf2b6ace9600ba554 /demos/Win32-MSVS/demo.c
parentdc39fea05ea07302e2c51fbfbf6b37530b124577 (diff)
downloadChibiOS-14d3b059c225769038a0f3538f491cf6099dbb3e.tar.gz
ChibiOS-14d3b059c225769038a0f3538f491cf6099dbb3e.tar.bz2
ChibiOS-14d3b059c225769038a0f3538f491cf6099dbb3e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@165 35acf78f-673a-0410-8e92-d51de3d6d3f4
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");