1.6.7.3 1.7.8.3 1.10.8.3 1.11.9.3 1.12.8.3 1.13.8.3 1.22.10.3 1.23.9.3 1.24.8.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.