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:
Forty-Bot 2024-01-14 23:54:11 -05:00 committed by GitHub
parent 7d09b88e5a
commit 154dee1c86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
#define configMAX_PRIORITIES ( 4 )
#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 configUSE_TRACE_FACILITY 0
#define configUSE_16_BIT_TICKS 1

@ -1 +1 @@
Subproject commit ca907b445b52f5814705761cf63cb2ef5e43605a
Subproject commit 2f628e3f89e1f84cb929358886e80d3218791ab8

View file

@ -5,7 +5,7 @@ license: "MIT"
dependencies:
- name: "FreeRTOS-Kernel"
version: "ca907b445"
version: "2f628e3"
repository:
type: "git"
url: "https://github.com/FreeRTOS/FreeRTOS-Kernel.git"