Skip to content

Commit 65f6324

Browse files
author
danicampora
committed
cc3200: Increase stack sizes a bit.
1 parent d813717 commit 65f6324

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cc3200/FreeRTOS/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
#define configUSE_TICK_HOOK 1
8484
#define configCPU_CLOCK_HZ ( ( unsigned long ) 80000000 )
8585
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
86-
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 64 )
86+
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 72 )
8787
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 16384 ) )
8888
#define configMAX_TASK_NAME_LEN ( 8 )
8989
#define configUSE_TRACE_FACILITY 0

cc3200/simplelink/oslib/osi_freertos.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ OsiReturnVal_e VStartSimpleLinkSpawnTask(unsigned portBASE_TYPE uxPriority)
457457
ASSERT (xSimpleLinkSpawnQueue != NULL);
458458

459459
ASSERT (pdPASS == xTaskCreate( vSimpleLinkSpawnTask, ( portCHAR * ) "SLSPAWN",\
460-
736 / sizeof(portSTACK_TYPE), NULL, uxPriority, &xSimpleLinkSpawnTaskHndl ));
460+
896 / sizeof(portSTACK_TYPE), NULL, uxPriority, &xSimpleLinkSpawnTaskHndl ));
461461

462462
return OSI_OK;
463463
}

0 commit comments

Comments
 (0)