aboutsummaryrefslogtreecommitdiff
path: root/cc3200/simplelink
diff options
context:
space:
mode:
authordanicampora2015-03-11 21:26:15 +0100
committerdanicampora2015-03-11 22:09:51 +0100
commitdb0580d0a5cb8caa0b3f3a0e86879ddb1a9260ff (patch)
treed1748bbcbb4fd7af64ee4d634b16e28fc4028361 /cc3200/simplelink
parentb2a237d337b82085c5cd54da76d67f9fe5bf1489 (diff)
cc3200: Reduce stack sizes of simplelink and the servers.
Diffstat (limited to 'cc3200/simplelink')
-rw-r--r--cc3200/simplelink/oslib/osi_freertos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/simplelink/oslib/osi_freertos.c b/cc3200/simplelink/oslib/osi_freertos.c
index 196672de7..198d2adbf 100644
--- a/cc3200/simplelink/oslib/osi_freertos.c
+++ b/cc3200/simplelink/oslib/osi_freertos.c
@@ -457,7 +457,7 @@ OsiReturnVal_e VStartSimpleLinkSpawnTask(unsigned portBASE_TYPE uxPriority)
ASSERT (xSimpleLinkSpawnQueue != NULL);
ASSERT (pdPASS == xTaskCreate( vSimpleLinkSpawnTask, ( portCHAR * ) "SLSPAWN",\
- 768 / sizeof(portSTACK_TYPE), NULL, uxPriority, &xSimpleLinkSpawnTaskHndl ));
+ 736 / sizeof(portSTACK_TYPE), NULL, uxPriority, &xSimpleLinkSpawnTaskHndl ));
return OSI_OK;
}