/* Called periodically from the tick hook to exercise the "FromISR"\r
functions. */\r
\r
+ /* Check the even group tasks were actually created. */\r
+ configASSERT( xISREventGroup );\r
+\r
xCallCount++;\r
\r
if( xCallCount == xSetBitCount )\r
uint32_t ulPreviousValue;\r
const uint32_t ulUnexpectedValue = 0xff;\r
\r
+ /* Check the task notification demo tasks were actually created. */\r
+ configASSERT( xTaskToNotify );\r
+\r
/* The task performs some tests before starting the timer that gives the\r
notification from this interrupt. If the timer has not been created yet\r
then the initial tests have not yet completed and the notification should\r
high as to disrupt the timer tests. */\r
vTaskPrioritySet( NULL, configTIMER_TASK_PRIORITY - 1 );\r
\r
- /* Crude check to too that vTaskDelay() blocks for the expected period. */\r
+ /* Crude check to too see that vTaskDelay() blocks for the expected\r
+ period. */\r
xPreTime = xTaskGetTickCount();\r
vTaskDelay( bktTIME_TO_BLOCK );\r
xPostTime = xTaskGetTickCount();\r