|
|
|
@ -1224,9 +1224,9 @@ xTaskHandle xTaskGetIdleTaskHandle( void );
|
|
|
|
|
// format the raw data as human readable ASCII data
|
|
|
|
|
for( x = 0; x < uxArraySize; x++ )
|
|
|
|
|
{
|
|
|
|
|
/* What percentage of the total run time has the task used?
|
|
|
|
|
This will always be rounded down to the nearest integer.
|
|
|
|
|
ulTotalRunTimeDiv100 has already been divided by 100.
|
|
|
|
|
// What percentage of the total run time has the task used?
|
|
|
|
|
// This will always be rounded down to the nearest integer.
|
|
|
|
|
// ulTotalRunTimeDiv100 has already been divided by 100.
|
|
|
|
|
ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalRunTime;
|
|
|
|
|
|
|
|
|
|
if( ulStatsAsPercentage > 0UL )
|
|
|
|
|