2.33.10 DMT_StatusGet Function
C
uint32_t DMT_StatusGet( void )
Summary
Returns status flag from the DMT Status Register.
Description
This function reads and returns the current status of the DMT. The status value is a 32-bit number representing various status flags and conditions of the DMT.
Precondition
The returned status value is the raw value from the DMT status register and may need to be interpreted based on the specific bits defined for the DMT status.
Parameters
None
Returns
Status value of DMT.
Example
uint32_t statusValue = 0;
DMT_Enable();
statusValue = DMT_StatusGet();
Remarks
None