> 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/vtimerdisable.md).

# vTimerDisable()

Disable the Timer hardware.

## Argument <a href="#yin-shu" id="yin-shu"></a>

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

## Returns <a href="#ri" id="ri"></a>

None.

## Sample code <a href="#sanpuru" id="sanpuru"></a>

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

​<br>
