2.33.9 DMT_PostEventClear Function
C
void DMT_PostEventClear(void)
Summary
Performs clear sequence for the DMT Event and all other DMT flags, post occurrence of DMT Event.
Description
This function performs the necessary sequence to clear the DMT event flag and any other related DMT flags. This is typically done after handling a DMT event to reset the DMT status and prepare for future DMT events.
Precondition
The DMT event must have occurred, and the system should be in a state where it is safe to clear the DMT flags.Ensure that the DMT event has been properly handled before calling this function to clear the flags. Clearing the flags prematurely may result in loss of important status information.
Parameters
None.
Returns
None.
Example
DMT_Enable(); if(DMT_IsPreCleared()) { statement1; statement2; }
Remarks
None.