1.8.22.10 TCx_CHy_TimerStart Function

C

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

Summary

Starts the given TC channel counter

Description

This function enables the clock and starts the counter of associated channel.

Precondition

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

Parameters

None

Returns

None.

Example

TC0_CH1_TimerInitialize();
TC0_CH1_TimerStart();

Remarks

None