@ -71,13 +71,13 @@ bool Stopwatch::start() {
|
||||
else return false;
|
||||
}
|
||||
|
||||
void Stopwatch::resume(const millis_t duration) {
|
||||
void Stopwatch::resume(const millis_t with_time) {
|
||||
#if ENABLED(DEBUG_STOPWATCH)
|
||||
Stopwatch::debug(PSTR("resume"));
|
||||
#endif
|
||||
|
||||
reset();
|
||||
if ((accumulator = duration)) state = RUNNING;
|
||||
if ((accumulator = with_time)) state = RUNNING;
|
||||
}
|
||||
|
||||
void Stopwatch::reset() {
|
||||
|
@ -75,7 +75,7 @@ class Stopwatch {
|
||||
* @brief Resume the stopwatch
|
||||
* @details Resume a timer from a given duration
|
||||
*/
|
||||
static void resume(const millis_t duration);
|
||||
static void resume(const millis_t with_time);
|
||||
|
||||
/**
|
||||
* @brief Reset the stopwatch
|
||||
|
Reference in New Issue
Block a user