|
|
|
@ -963,7 +963,7 @@ signed portBASE_TYPE xTaskIsTaskSuspended( xTaskHandle xTask ) PRIVILEGED_FUNCTI
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* task. h
|
|
|
|
|
* <PRE>volatile portTickType xTaskGetTickCount( void );</PRE>
|
|
|
|
|
* <PRE>portTickType xTaskGetTickCount( void );</PRE>
|
|
|
|
|
*
|
|
|
|
|
* @return The count of ticks since vTaskStartScheduler was called.
|
|
|
|
|
*
|
|
|
|
@ -972,6 +972,22 @@ signed portBASE_TYPE xTaskIsTaskSuspended( xTaskHandle xTask ) PRIVILEGED_FUNCTI
|
|
|
|
|
*/
|
|
|
|
|
portTickType xTaskGetTickCount( void ) PRIVILEGED_FUNCTION;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* task. h
|
|
|
|
|
* <PRE>portTickType xTaskGetTickCountFromISR( void );</PRE>
|
|
|
|
|
*
|
|
|
|
|
* @return The count of ticks since vTaskStartScheduler was called.
|
|
|
|
|
*
|
|
|
|
|
* This is a version of xTaskGetTickCount() that is safe to be called from an
|
|
|
|
|
* ISR - provided that portTickType is the natural word size of the
|
|
|
|
|
* microcontroller being used or interrupt nesting is either not supported or
|
|
|
|
|
* not being used.
|
|
|
|
|
*
|
|
|
|
|
* \page xTaskGetTickCount xTaskGetTickCount
|
|
|
|
|
* \ingroup TaskUtils
|
|
|
|
|
*/
|
|
|
|
|
portTickType xTaskGetTickCountFromISR( void ) PRIVILEGED_FUNCTION;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* task. h
|
|
|
|
|
* <PRE>unsigned short uxTaskGetNumberOfTasks( void );</PRE>
|
|
|
|
|