diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-07 10:49:59 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-07 10:49:59 +0000 |
commit | 14d3b059c225769038a0f3538f491cf6099dbb3e (patch) | |
tree | b4049b72b26d9247cdeb4adbf2b6ace9600ba554 /demos | |
parent | dc39fea05ea07302e2c51fbfbf6b37530b124577 (diff) | |
download | ChibiOS-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')
-rw-r--r-- | demos/Win32-MSVS/ch.vcproj | 13 | ||||
-rw-r--r-- | demos/Win32-MSVS/demo.c | 9 |
2 files changed, 6 insertions, 16 deletions
diff --git a/demos/Win32-MSVS/ch.vcproj b/demos/Win32-MSVS/ch.vcproj index 3490c810b..0b27e2ffb 100644 --- a/demos/Win32-MSVS/ch.vcproj +++ b/demos/Win32-MSVS/ch.vcproj @@ -160,6 +160,9 @@ RelativePath="..\..\src\chmsg.c">
</File>
<File
+ RelativePath="..\..\src\chmtx.c">
+ </File>
+ <File
RelativePath="..\..\src\chqueues.c">
</File>
<File
@@ -185,13 +188,6 @@ RelativePath="..\..\ports\Win32\simcom.c">
</File>
</Filter>
- <Filter
- Name="test"
- Filter="">
- <File
- RelativePath="..\..\test\test.c">
- </File>
- </Filter>
</Filter>
<Filter
Name="Header Files"
@@ -231,6 +227,9 @@ RelativePath="..\..\src\include\messages.h">
</File>
<File
+ RelativePath="..\..\src\include\mutexes.h">
+ </File>
+ <File
RelativePath="..\..\src\include\queues.h">
</File>
<File
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");
|