template<class COUNTERTYPE>
class StopWatchTimer< COUNTERTYPE >
A StopWatchTimer is an upcounting timer that can be started, stopped and reset to zero. The current timer value can be queried at any time. The value silently flows over when its maximum is reached. The StopWatchTimer needs to be added to a TimerServiceHost instance. The base tick frequency of the TimerServiceHost specifies the rate at which the timer value is incremented.
- Parameters
-
COUNTERTYPE | Data type for timeout value, e.g. uint16_t. |