aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-12-23 09:40:50 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-12-23 09:40:50 +0000
commit398c024927d7fb31d86c50e081a74a9c8fd45769 (patch)
treeaf4112982962f797147b5c80f4d7e7c72d7cebc2 /demos
parent05b8a7431d43735af86c4a393a06f2e18a4cfe3a (diff)
downloadChibiOS-398c024927d7fb31d86c50e081a74a9c8fd45769.tar.gz
ChibiOS-398c024927d7fb31d86c50e081a74a9c8fd45769.tar.bz2
ChibiOS-398c024927d7fb31d86c50e081a74a9c8fd45769.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@159 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r--demos/Win32-MinGW/Makefile7
-rw-r--r--demos/Win32-MinGW/demo.c6
2 files changed, 7 insertions, 6 deletions
diff --git a/demos/Win32-MinGW/Makefile b/demos/Win32-MinGW/Makefile
index 9ee9dfb77..8d4edec7e 100644
--- a/demos/Win32-MinGW/Makefile
+++ b/demos/Win32-MinGW/Makefile
@@ -58,9 +58,10 @@ UADEFS =
# List C source files here
SRC = chcore.c demo.c \
../../test/test.c ../../ports/win32/simcom.c \
- ../../src/chinit.c ../../src/chlists.c ../../src/chdelta.c ../../src/chschd.c \
- ../../src/chthreads.c ../../src/chsem.c ../../src/chevents.c ../../src/chmsg.c \
- ../../src/chsleep.c ../../src/chqueues.c ../../src/chserial.c
+ ../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
+ ../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
+ ../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
+ ../../src/chserial.c \
# List ASM source files here
ASRC = chcore2.s
diff --git a/demos/Win32-MinGW/demo.c b/demos/Win32-MinGW/demo.c
index 7f8bd6903..acf17e7fd 100644
--- a/demos/Win32-MinGW/demo.c
+++ b/demos/Win32-MinGW/demo.c
@@ -159,7 +159,7 @@ static t_msg ShellThread(void *arg) {
FullDuplexDriver *sd = (FullDuplexDriver *)arg;
char *lp, line[64];
Thread *tp;
- WorkingArea(tarea, 1024);
+ WorkingArea(tarea, 2048);
chIQReset(&sd->sd_iqueue);
chOQReset(&sd->sd_oqueue);
@@ -221,7 +221,7 @@ static t_msg ShellThread(void *arg) {
return 0;
}
-static WorkingArea(s1area, 2048);
+static WorkingArea(s1area, 4096);
static Thread *s1;
EventListener s1tel;
@@ -244,7 +244,7 @@ static void COM1Handler(t_eventid id) {
chIQReset(&COM1.sd_iqueue);
}
-static WorkingArea(s2area, 2048);
+static WorkingArea(s2area, 4096);
static Thread *s2;
EventListener s2tel;