From 3d527e7aacadd146a7b3a06eb491194ed39f0c85 Mon Sep 17 00:00:00 2001 From: arighi Date: Tue, 25 May 2010 16:47:26 +0000 Subject: [PATCH] arduino: enlarge the stack size of the child process in the "kernel" preset template. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3837 38d2e660-2303-0410-9eaa-f027e97ec537 --- boards/arduino/templates/kernel/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arduino/templates/kernel/main.c b/boards/arduino/templates/kernel/main.c index 6b7412a6..b4ebd8ed 100644 --- a/boards/arduino/templates/kernel/main.c +++ b/boards/arduino/templates/kernel/main.c @@ -94,7 +94,7 @@ int main(void) init(); /* Create a new child process */ - proc_new(led_process, NULL, KERN_MINSTACKSIZE, NULL); + proc_new(led_process, NULL, KERN_MINSTACKSIZE * 2, NULL); /* * The main process is kept to periodically report the stack -- 2.25.1