Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
65f63245
Commit
65f63245
authored
Oct 19, 2015
by
danicampora
Browse files
cc3200: Increase stack sizes a bit.
parent
d8137178
Changes
2
Hide whitespace changes
Inline
Side-by-side
cc3200/FreeRTOS/FreeRTOSConfig.h
View file @
65f63245
...
...
@@ -83,7 +83,7 @@
#define configUSE_TICK_HOOK 1
#define configCPU_CLOCK_HZ ( ( unsigned long ) 80000000 )
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
#define configMINIMAL_STACK_SIZE ( ( unsigned short )
64
)
#define configMINIMAL_STACK_SIZE ( ( unsigned short )
72
)
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 16384 ) )
#define configMAX_TASK_NAME_LEN ( 8 )
#define configUSE_TRACE_FACILITY 0
...
...
cc3200/simplelink/oslib/osi_freertos.c
View file @
65f63245
...
...
@@ -457,7 +457,7 @@ OsiReturnVal_e VStartSimpleLinkSpawnTask(unsigned portBASE_TYPE uxPriority)
ASSERT
(
xSimpleLinkSpawnQueue
!=
NULL
);
ASSERT
(
pdPASS
==
xTaskCreate
(
vSimpleLinkSpawnTask
,
(
portCHAR
*
)
"SLSPAWN"
,
\
73
6
/
sizeof
(
portSTACK_TYPE
),
NULL
,
uxPriority
,
&
xSimpleLinkSpawnTaskHndl
));
89
6
/
sizeof
(
portSTACK_TYPE
),
NULL
,
uxPriority
,
&
xSimpleLinkSpawnTaskHndl
));
return
OSI_OK
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment