diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-09 10:12:00 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-09 10:12:00 +0000 |
commit | 16201b81af3b75cdae794549fb26491d15fb59c7 (patch) | |
tree | 2105565a115d6bd60fa887b0555b715e138a3707 /demos | |
parent | 8e8efedf205904ba59ddf38365034e932005384f (diff) | |
download | ChibiOS-16201b81af3b75cdae794549fb26491d15fb59c7.tar.gz ChibiOS-16201b81af3b75cdae794549fb26491d15fb59c7.tar.bz2 ChibiOS-16201b81af3b75cdae794549fb26491d15fb59c7.zip |
Fixed test thread stack size.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11137 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/STM32/NIL-STM32F051-DISCOVERY/main.c | 2 | ||||
-rw-r--r-- | demos/STM32/NIL-STM32F303-DISCOVERY/main.c | 2 | ||||
-rw-r--r-- | demos/STM32/NIL-STM32F746G-DISCOVERY/main.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/demos/STM32/NIL-STM32F051-DISCOVERY/main.c b/demos/STM32/NIL-STM32F051-DISCOVERY/main.c index 7e4e13e80..b97e53d2f 100644 --- a/demos/STM32/NIL-STM32F051-DISCOVERY/main.c +++ b/demos/STM32/NIL-STM32F051-DISCOVERY/main.c @@ -54,7 +54,7 @@ THD_FUNCTION(Thread2, arg) { /*
* Thread 3.
*/
-THD_WORKING_AREA(waThread3, 128);
+THD_WORKING_AREA(waThread3, 256);
THD_FUNCTION(Thread3, arg) {
(void)arg;
diff --git a/demos/STM32/NIL-STM32F303-DISCOVERY/main.c b/demos/STM32/NIL-STM32F303-DISCOVERY/main.c index 61d556a0c..2f1f4aa06 100644 --- a/demos/STM32/NIL-STM32F303-DISCOVERY/main.c +++ b/demos/STM32/NIL-STM32F303-DISCOVERY/main.c @@ -78,7 +78,7 @@ static THD_FUNCTION(Thread2, arg) { /*
* Tester thread.
*/
-THD_WORKING_AREA(waThread3, 128);
+THD_WORKING_AREA(waThread3, 256);
THD_FUNCTION(Thread3, arg) {
(void)arg;
diff --git a/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c b/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c index fb907fd6e..288614339 100644 --- a/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c +++ b/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c @@ -44,7 +44,7 @@ static THD_FUNCTION(Thread1, arg) { /*
* Tester thread.
*/
-THD_WORKING_AREA(waThread2, 128);
+THD_WORKING_AREA(waThread2, 256);
THD_FUNCTION(Thread2, arg) {
(void)arg;
|