aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MinGW/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-10 21:05:51 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-10 21:05:51 +0000
commit4bb9e7735d4a84e6ddee2b5778906e6cd54db577 (patch)
tree12ebe014bb3cec9bb42308fc2b10cc82f9b48b2b /demos/Win32-MinGW/main.c
parentdea70dbc797e0936c2532ae55881437e06e169fa (diff)
downloadChibiOS-4bb9e7735d4a84e6ddee2b5778906e6cd54db577.tar.gz
ChibiOS-4bb9e7735d4a84e6ddee2b5778906e6cd54db577.tar.bz2
ChibiOS-4bb9e7735d4a84e6ddee2b5778906e6cd54db577.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1412 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/Win32-MinGW/main.c')
-rw-r--r--demos/Win32-MinGW/main.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/demos/Win32-MinGW/main.c b/demos/Win32-MinGW/main.c
index c2ead083e..22ea086c3 100644
--- a/demos/Win32-MinGW/main.c
+++ b/demos/Win32-MinGW/main.c
@@ -24,6 +24,7 @@
#define SHELL_WA_SIZE THD_WA_SIZE(4096)
#define CONSOLE_WA_SIZE THD_WA_SIZE(4096)
+#define TEST_WA_SIZE THD_WA_SIZE(4096)
#define cprint(msg) chMsgSend(cdtp, (msg_t)msg)
@@ -31,14 +32,33 @@ static Thread *cdtp;
static Thread *shelltp1;
static Thread *shelltp2;
+void cmd_test(BaseChannel *chp, int argc, char *argv[]) {
+ Thread *tp;
+
+ (void)argv;
+ if (argc > 0) {
+ shellPrintLine(chp, "Usage: test");
+ return;
+ }
+ tp = chThdCreateFromHeap(NULL, TEST_WA_SIZE, chThdGetPriority(),
+ TestThread, chp);
+ chThdWait(tp);
+// TestThread(chp);
+}
+
+static const ShellCommand commands[] = {
+ {"test", cmd_test},
+ {NULL, NULL}
+};
+
static const ShellConfig shell_cfg1 = {
(BaseChannel *)&SD1,
- NULL
+ commands
};
static const ShellConfig shell_cfg2 = {
(BaseChannel *)&SD2,
- NULL
+ commands
};
/*