mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 00:37:44 -04:00
Fix msp430_GCC demo application (#1153)
* Update kernel Update kernel to bring in a fix for MSP430 task initialization. * msp430_GCC: Decrease heap size to avoid stack overflow With 1800 bytes allocated to the heap, the stack overflows while initializing tasks. Decrease the heap size so we have a bit more space for the initial stack. We are using most of the heap, so 100 bytes is about as much as we can decrease it by.
This commit is contained in:
parent
7d09b88e5a
commit
154dee1c86
3 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@
|
||||||
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
|
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
|
||||||
#define configMAX_PRIORITIES ( 4 )
|
#define configMAX_PRIORITIES ( 4 )
|
||||||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 50 )
|
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 50 )
|
||||||
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 1800 ) )
|
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 1700 ) )
|
||||||
#define configMAX_TASK_NAME_LEN ( 8 )
|
#define configMAX_TASK_NAME_LEN ( 8 )
|
||||||
#define configUSE_TRACE_FACILITY 0
|
#define configUSE_TRACE_FACILITY 0
|
||||||
#define configUSE_16_BIT_TICKS 1
|
#define configUSE_16_BIT_TICKS 1
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ca907b445b52f5814705761cf63cb2ef5e43605a
|
Subproject commit 2f628e3f89e1f84cb929358886e80d3218791ab8
|
|
@ -5,7 +5,7 @@ license: "MIT"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: "FreeRTOS-Kernel"
|
- name: "FreeRTOS-Kernel"
|
||||||
version: "ca907b445"
|
version: "2f628e3"
|
||||||
repository:
|
repository:
|
||||||
type: "git"
|
type: "git"
|
||||||
url: "https://github.com/FreeRTOS/FreeRTOS-Kernel.git"
|
url: "https://github.com/FreeRTOS/FreeRTOS-Kernel.git"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue