2017-02-25 11:15:18 +01:00
|
|
|
/**
|
2016-03-30 19:26:33 +02:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stopwatch.h"
|
|
|
|
|
2018-03-05 05:52:25 +01:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
|
|
|
Stopwatch::State Stopwatch::state;
|
|
|
|
millis_t Stopwatch::accumulator;
|
|
|
|
millis_t Stopwatch::startTimestamp;
|
|
|
|
millis_t Stopwatch::stopTimestamp;
|
2016-03-30 19:26:33 +02:00
|
|
|
|
2016-05-22 02:59:59 +02:00
|
|
|
bool Stopwatch::stop() {
|
2016-04-20 21:35:37 +02:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 03:12:08 +02:00
|
|
|
Stopwatch::debug(PSTR("stop"));
|
2016-04-20 21:35:37 +02:00
|
|
|
#endif
|
|
|
|
|
2018-03-05 05:52:25 +01:00
|
|
|
if (isRunning() || isPaused()) {
|
|
|
|
state = STOPPED;
|
|
|
|
stopTimestamp = millis();
|
2016-05-22 02:59:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 19:26:33 +02:00
|
|
|
}
|
|
|
|
|
2016-05-22 02:59:59 +02:00
|
|
|
bool Stopwatch::pause() {
|
2016-04-20 21:35:37 +02:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 03:12:08 +02:00
|
|
|
Stopwatch::debug(PSTR("pause"));
|
2016-04-20 21:35:37 +02:00
|
|
|
#endif
|
|
|
|
|
2018-03-05 05:52:25 +01:00
|
|
|
if (isRunning()) {
|
|
|
|
state = PAUSED;
|
|
|
|
stopTimestamp = millis();
|
2016-05-22 02:59:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 19:26:33 +02:00
|
|
|
}
|
|
|
|
|
2016-05-22 02:59:59 +02:00
|
|
|
bool Stopwatch::start() {
|
2016-04-20 21:35:37 +02:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 03:12:08 +02:00
|
|
|
Stopwatch::debug(PSTR("start"));
|
2016-04-20 21:35:37 +02:00
|
|
|
#endif
|
|
|
|
|
2018-03-05 05:52:25 +01:00
|
|
|
if (!isRunning()) {
|
|
|
|
if (isPaused()) accumulator = duration();
|
|
|
|
else reset();
|
2016-03-30 19:26:33 +02:00
|
|
|
|
2018-03-05 05:52:25 +01:00
|
|
|
state = RUNNING;
|
|
|
|
startTimestamp = millis();
|
2016-05-22 02:59:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 19:26:33 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 05:53:06 +02:00
|
|
|
void Stopwatch::resume(const millis_t duration) {
|
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
|
|
|
Stopwatch::debug(PSTR("resume"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
reset();
|
|
|
|
if ((accumulator = duration)) state = RUNNING;
|
|
|
|
}
|
|
|
|
|
2016-04-07 13:41:09 +02:00
|
|
|
void Stopwatch::reset() {
|
2016-04-20 21:35:37 +02:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 03:12:08 +02:00
|
|
|
Stopwatch::debug(PSTR("reset"));
|
2016-04-20 21:35:37 +02:00
|
|
|
#endif
|
2016-03-30 19:26:33 +02:00
|
|
|
|
2018-03-05 05:52:25 +01:00
|
|
|
state = STOPPED;
|
|
|
|
startTimestamp = 0;
|
|
|
|
stopTimestamp = 0;
|
|
|
|
accumulator = 0;
|
2016-03-30 19:26:33 +02:00
|
|
|
}
|
|
|
|
|
2016-07-13 04:03:42 +02:00
|
|
|
millis_t Stopwatch::duration() {
|
2018-04-17 05:53:06 +02:00
|
|
|
return ((isRunning() ? millis() : stopTimestamp)
|
2018-03-05 05:52:25 +01:00
|
|
|
- startTimestamp) / 1000UL + accumulator;
|
2016-03-30 19:26:33 +02:00
|
|
|
}
|
2016-04-20 21:35:37 +02:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
|
|
|
|
|
|
|
void Stopwatch::debug(const char func[]) {
|
|
|
|
if (DEBUGGING(INFO)) {
|
|
|
|
SERIAL_ECHOPGM("Stopwatch::");
|
|
|
|
serialprintPGM(func);
|
|
|
|
SERIAL_ECHOLNPGM("()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|