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-d51de3d6d3f4master
parent
ef765be75f
commit
87098feb41
|
@ -21,7 +21,7 @@
|
||||||
#include "hal.h"
|
#include "hal.h"
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
|
||||||
static WORKING_AREA(waThread1, 64);
|
static WORKING_AREA(waThread1, 128);
|
||||||
static msg_t Thread1(void *p) {
|
static msg_t Thread1(void *p) {
|
||||||
|
|
||||||
(void)p;
|
(void)p;
|
||||||
|
|
|
@ -230,7 +230,7 @@ static const ShellConfig shell_cfg1 = {
|
||||||
/*
|
/*
|
||||||
* LCD blinker thread, times are in milliseconds.
|
* LCD blinker thread, times are in milliseconds.
|
||||||
*/
|
*/
|
||||||
static WORKING_AREA(waThread1, 64);
|
static WORKING_AREA(waThread1, 128);
|
||||||
static msg_t Thread1(void *p) {
|
static msg_t Thread1(void *p) {
|
||||||
|
|
||||||
(void)p;
|
(void)p;
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include "hal.h"
|
#include "hal.h"
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
|
||||||
static WORKING_AREA(waThread1, 64);
|
static WORKING_AREA(waThread1, 128);
|
||||||
static msg_t Thread1(void *p) {
|
static msg_t Thread1(void *p) {
|
||||||
|
|
||||||
(void)p;
|
(void)p;
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "lwip/lwipthread.h"
|
#include "lwip/lwipthread.h"
|
||||||
#include "web/web.h"
|
#include "web/web.h"
|
||||||
|
|
||||||
static WORKING_AREA(waThread1, 64);
|
static WORKING_AREA(waThread1, 128);
|
||||||
static msg_t Thread1(void *p) {
|
static msg_t Thread1(void *p) {
|
||||||
|
|
||||||
(void)p;
|
(void)p;
|
||||||
|
|
|
@ -24,11 +24,11 @@
|
||||||
#include "web/webthread.h"
|
#include "web/webthread.h"
|
||||||
|
|
||||||
static WORKING_AREA(waWebThread, 1024);
|
static WORKING_AREA(waWebThread, 1024);
|
||||||
|
|
||||||
static WORKING_AREA(waThread1, 128);
|
static WORKING_AREA(waThread1, 128);
|
||||||
|
static msg_t Thread1(void *p) {
|
||||||
|
|
||||||
static msg_t Thread1(void *arg) {
|
(void)p;
|
||||||
|
|
||||||
(void)arg;
|
|
||||||
while (TRUE) {
|
while (TRUE) {
|
||||||
palSetPad(IOPORT2, PIOB_LCD_BL);
|
palSetPad(IOPORT2, PIOB_LCD_BL);
|
||||||
chThdSleepMilliseconds(100);
|
chThdSleepMilliseconds(100);
|
||||||
|
|
Loading…
Reference in New Issue