> For the complete documentation index, see [llms.txt](https://sdk.twelite.info/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sdk.twelite.info/en/hw-api-ref/perifuraru/timer/timerraiburari/vtimerstop.md).

# vTimerStop()

## Explanation

Stop the Timer.

## Argument

| Type                                                                                       | Name | Remark                        |
| ------------------------------------------------------------------------------------------ | ---- | ----------------------------- |
| `​`[`tsTimerContext`](/en/hw-api-ref/perifuraru/timer/timerraiburari/tstimercontext.md)`*` | psTC | Structure for timer settings. |

## Returns

None.

## Sample code

```c
// just stop the timer
vTimerStop(&sTimerApp);
...
// restart
vTimerStart(&sTimerApp);
...
// now, disable timer completely
vTimerStop(&sTimerApp);
vTimerDisable(&sTimerApp);
```
