Increased blinker thread stack size on some demos.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2395 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-11-20 11:21:36 +00:00
parent ef765be75f
commit 87098feb41
5 changed files with 7 additions and 7 deletions

View File

@ -21,7 +21,7 @@
#include "hal.h"
#include "test.h"
static WORKING_AREA(waThread1, 64);
static WORKING_AREA(waThread1, 128);
static msg_t Thread1(void *p) {
(void)p;

View File

@ -230,7 +230,7 @@ static const ShellConfig shell_cfg1 = {
/*
* LCD blinker thread, times are in milliseconds.
*/
static WORKING_AREA(waThread1, 64);
static WORKING_AREA(waThread1, 128);
static msg_t Thread1(void *p) {
(void)p;

View File

@ -21,7 +21,7 @@
#include "hal.h"
#include "test.h"
static WORKING_AREA(waThread1, 64);
static WORKING_AREA(waThread1, 128);
static msg_t Thread1(void *p) {
(void)p;

View File

@ -24,7 +24,7 @@
#include "lwip/lwipthread.h"
#include "web/web.h"
static WORKING_AREA(waThread1, 64);
static WORKING_AREA(waThread1, 128);
static msg_t Thread1(void *p) {
(void)p;

View File

@ -24,11 +24,11 @@
#include "web/webthread.h"
static WORKING_AREA(waWebThread, 1024);
static WORKING_AREA(waThread1, 128);
static msg_t Thread1(void *p) {
static msg_t Thread1(void *arg) {
(void)arg;
(void)p;
while (TRUE) {
palSetPad(IOPORT2, PIOB_LCD_BL);
chThdSleepMilliseconds(100);