For the complete documentation index, see llms.txt. This page is also available as Markdown.

vTimerDisable()

Disable the Timer hardware.

Argument

Type

Name

Remark

psTC

Structure for timer settings.

Returns

None.

Sample code

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

最終更新