1.3.23.3 1.4.24.3 1.5.22.3 1.6.24.3 1.7.25.3 1.29.26.3 1.30.16.3 1.31.16.3 1.32.29.3 1.33.18.3 1.37.16.3 1.38.24.3 1.39.21.3 1.40.23.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.