1.20.19.10 TMRx_Stop Function

C

/* x = TMR instance number */
void TMRx_Stop(void);

Summary

Stops the given Timer counter.

Description

This function stops the clock and thus counter.

Precondition

TMRx_Initialize() function must have been called first for the given timer.

Parameters

None

Returns

None.

Example

TMR2_Initialize();
TMR2_Start();
TMR2_Stop();

Remarks

None.