aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MinGW/demo.c
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/Win32-MinGW/demo.c
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/Win32-MinGW/demo.c')
-rw-r--r--demos/Win32-MinGW/demo.c6
1 files changed, 3 insertions, 3 deletions
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;