![](https://pdfstore-manualsonline.prod.a.ki/pdfasset/4/44/44414c02-d064-4424-ae12-8acc58561d02/44414c02-d064-4424-ae12-8acc58561d02-bg85.png)
iVIEW-100 Series user’s Manual, 2006, v2.0 ----- 133
StopWatchReset()
Func.: Reset the StopWatch value to 0.
Syntax:
int StopWatchReset(int channel);
Header: #include ”iVIEW.h”
Description:
channel:0-7, total 8 channels.
If channel is out of range return ChannelError(-15).
On success return NoError.
Example: Please refer to “StopWatchStart()” for detail information.
StopWatchStop()
Func.: Disable the StopWatch channel.
Syntax:
int StopWatchStop(int channel);
Header: #include ”iVIEW.h”
Description:
The system timer ISR will stop to increment the StopWatch value.
channel: 0-7, total 8 channels
If channel is out of range return ChannelError(-15).
On success return NoError.
Example: Please refer to “StopWatchStart ()” for detail information.
StopWatchPause()
Func.: Pause the StopWatch.
Syntax:
int StopWatchPause(int channel);
Header: #include ”iVIEW.h”
Description:
After call StopWatchPause can call StopWatchContinue to continue count
time.
channel:0-7, total 8 channels
If channel is out of range return ChannelError(-15).
On success return NoError.
Example: Please refer to “StopWatchStart ()” for detail information.
StopWatchContinue()
Func.: Continue the StopWatch.
Syntax:
int StopWatchContinue(int channel);
Header: #include ”iVIEW.h”
Description:
channel:0-7, total 8 channels
If channel is out of range return ChannelError(-15). If success return NoError.
Example: Please refer to “StopWatchStart ()” for detail information.