Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
65f63245
Commit
65f63245
authored
Oct 19, 2015
by
danicampora
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cc3200: Increase stack sizes a bit.
parent
d8137178
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cc3200/FreeRTOS/FreeRTOSConfig.h
cc3200/FreeRTOS/FreeRTOSConfig.h
+1
-1
cc3200/simplelink/oslib/osi_freertos.c
cc3200/simplelink/oslib/osi_freertos.c
+1
-1
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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