mbed-rtos for GR-peach

Fork of mbed-rtos by mbed official

Files at this revision

API Documentation at this revision

Comitter:
takashikojo
Date:
Tue Dec 02 07:32:43 2014 +0000
Parent:
54:f1ef95efa5ad
Commit message:
Stacks are expanded

Changed in this revision

rtx/TARGET_CORTEX_A/RTX_Conf_CA.c Show annotated file Show diff for this revision Revisions of this file
--- a/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c	Thu Nov 27 11:45:25 2014 +0000
+++ b/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c	Tue Dec 02 07:32:43 2014 +0000
@@ -54,14 +54,14 @@
 //   <i> Defines default stack size for threads with osThreadDef stacksz = 0
 //   <i> Default: 200
 #ifndef OS_STKSIZE
- #define OS_STKSIZE     200
+ #define OS_STKSIZE     (200*8)
 #endif
 
 //   <o>Main Thread stack size [bytes] <64-4096:8><#/4>
 //   <i> Defines stack size for main thread.
 //   <i> Default: 200
 #ifndef OS_MAINSTKSIZE
- #define OS_MAINSTKSIZE 512
+ #define OS_MAINSTKSIZE (512*64)
 #endif
 
 //   <o>Number of threads with user-provided stack size <0-250>
@@ -75,7 +75,7 @@
 //   <i> Defines the combined stack size for threads with user-provided stack size.
 //   <i> Default: 0
 #ifndef OS_PRIVSTKSIZE
- #define OS_PRIVSTKSIZE 4096
+ #define OS_PRIVSTKSIZE (4096*8)
 #endif
 
 // <q>Check for stack overflow