1.35.16.9 TCx_CHy_TimerStop Function

C

/* x = TC instance number, y= channel number */
void TCx_CHy_TimerStop ( void );

Summary

Stops the given TC channel counter

Description

This function stops the clock and thus counter of associated channel.

Precondition

TCx_CHy_TimerInitialize() function must have been called first for the given channel.

Parameters

None

Returns

None.

Example

TC1_CH2_TimerInitialize();
TC1_CH2_TimerStart();
TC1_CH2_TimerStop();

Remarks

None