1.5.22.3 TCx_TimerStop Function
C
/* x = TC instance number */
void TCx_TimerStop( void );
Summary
Stops the timer for given TC instance.
Description
This function stops the clock and thus timer.
Precondition
TCx_TimerInitialize() function must have been called first. Also counter should have been started with TCx_TimerStart() function call.
Parameters
None.
Returns
None.
Example
TC0_TimerInitialize(); TC0_TimerStart(); TC0_TimerStop();
Remarks
None.