FreeRTOS v9.0.0 upgrade.

This commit is contained in:
ourairquality 2016-10-21 19:11:08 +11:00
parent 2994a566a6
commit efd78f754e
60 changed files with 10627 additions and 3653 deletions

@ -1 +1 @@
Subproject commit 3cf8d514bd76e6ef77e6fa514d0ec6d96da7fd9a
Subproject commit aa3eb9ac978d52abca53561ebaf119a673a2aac0

View file

@ -514,7 +514,7 @@ xTaskHandle xCreatedTask;
portBASE_TYPE xResult;
sys_thread_t xReturn;
xResult = xTaskCreate( pxThread, ( signed char * ) pcName, iStackSize, pvArg, iPriority, &xCreatedTask );
xResult = xTaskCreate( pxThread, pcName, iStackSize, pvArg, iPriority, &xCreatedTask );
if( xResult == pdPASS )
{