We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f562517 commit f916ccfCopy full SHA for f916ccf
tasks.c
@@ -2756,6 +2756,20 @@ static BaseType_t prvCreateIdleTasks( void )
2756
}
2757
#endif /* configSUPPORT_STATIC_ALLOCATION */
2758
2759
+ return xReturn;
2760
+}
2761
+
2762
+void vTaskStartScheduler( void )
2763
+{
2764
+ BaseType_t xReturn;
2765
2766
+ #if ( configUSE_TIMERS == 1 )
2767
+ {
2768
+ xReturn = xTimerCreateTimerTask();
2769
+ }
2770
+ #endif /* configUSE_TIMERS */
2771
2772
+ xReturn = prvCreateIdleTasks();
2773
2774
return xReturn;
2775
0 commit comments