Skip to content

Commit db0580d

Browse files
committed
cc3200: Reduce stack sizes of simplelink and the servers.
1 parent b2a237d commit db0580d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cc3200/serverstask.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
DEFINE CONSTANTS
3232
******************************************************************************/
3333
#define SERVERS_PRIORITY 2
34-
#define SERVERS_STACK_SIZE 960
34+
#define SERVERS_STACK_SIZE 944
3535

3636
#define SERVERS_SSID_LEN_MAX 16
3737
#define SERVERS_KEY_LEN_MAX 16

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-
768 / sizeof(portSTACK_TYPE), NULL, uxPriority, &xSimpleLinkSpawnTaskHndl ));
460+
736 / sizeof(portSTACK_TYPE), NULL, uxPriority, &xSimpleLinkSpawnTaskHndl ));
461461

462462
return OSI_OK;
463463
}

0 commit comments

Comments
 (0)