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 1a1ae36 commit 5432554Copy full SHA for 5432554
tasks.c
@@ -4766,6 +4766,11 @@ BaseType_t xTaskIncrementTick( void )
4766
{
4767
for( ; ; )
4768
4769
+ /* if the system tick interrupt is started independent from the
4770
+ * scheduler the first tick increment might occur before the
4771
+ * the first task is created and therefore pxDelayedTaskList is
4772
+ * still not set */
4773
+ configASSERT( pxDelayedTaskList != NULL );
4774
if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE )
4775
4776
/* The delayed list is empty. Set xNextTaskUnblockTime
0 commit comments