Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-rtos by
Revision 55:08be97875895, committed 2014-12-02
- 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