1.6.7.3 DMT_ClearWindowStatusGet Function

C

bool DMT_ClearWindowStatusGet( void )

Summary

Returns Window is Open flag from the DMT Status Register.

Description

This function returns the flag indicating the DMT Window is open.

Precondition

DMT must be enabled using DMT_Enable().

Parameters

None.

Returns

true - Window is open.

false - Window is not open

Example

//Application

DMT_Enable();

// Application Code executes here.
// Clear the DMT periodically.
if(DMT_ClearWindowStatusGet() == true)
{
    DMT_Clear();
}

Remarks

None.