Skip to content

Commit 74f816a

Browse files
committed
Adjustments to tasks from PR review
1 parent a65f379 commit 74f816a

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

tasks.c

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2757,21 +2757,6 @@ static BaseType_t prvCreateIdleTasks( void )
27572757
return xReturn;
27582758
}
27592759

2760-
void vTaskStartScheduler( void )
2761-
{
2762-
BaseType_t xReturn;
2763-
2764-
#if ( configUSE_TIMERS == 1 )
2765-
{
2766-
xReturn = xTimerCreateTimerTask();
2767-
}
2768-
#endif /* configUSE_TIMERS */
2769-
2770-
xReturn = prvCreateIdleTasks();
2771-
2772-
return xReturn;
2773-
}
2774-
27752760
void vTaskStartScheduler( void )
27762761
{
27772762
BaseType_t xReturn;
@@ -4234,11 +4219,6 @@ void vTaskMissedYield( void )
42344219
* The MinimalIdle task.
42354220
* ----------------------------------------------------------
42364221
*
4237-
* The portTASK_FUNCTION() macro is used to allow port/compiler specific
4238-
* language extensions. The equivalent prototype for this function is:
4239-
*
4240-
* void prvMinimalIdleTask( void *pvParameters );
4241-
*
42424222
* The minimal idle task is used for all the additional Cores in a SMP system.
42434223
* There must be only 1 idle task and the rest are minimal idle tasks.
42444224
*

0 commit comments

Comments
 (0)