1.18.20.9 TMR1_Stop Function

C

void TMR1_Stop(void);

Summary

Stops the given Timer counter.

Description

This function stops the clock and thus counter.

Precondition

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

Parameters

None.

Returns

None.

Example

TMR1_Initialize();
TMR1_Start();
TMR1_Stop();

Remarks

None.