2017-02-25 10:15:18 +00:00
|
|
|
/**
|
2016-03-30 17:26:33 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-30 17:26:33 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-30 17:26:33 +00:00
|
|
|
*
|
|
|
|
* 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 03:23:43 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
2019-08-28 09:23:13 +00:00
|
|
|
#if ENABLED(EXTENSIBLE_UI)
|
|
|
|
#include "../lcd/extensible_ui/ui_api.h"
|
|
|
|
#endif
|
|
|
|
|
2018-03-05 03:23:43 +00:00
|
|
|
Stopwatch::State Stopwatch::state;
|
|
|
|
millis_t Stopwatch::accumulator;
|
|
|
|
millis_t Stopwatch::startTimestamp;
|
|
|
|
millis_t Stopwatch::stopTimestamp;
|
2016-03-30 17:26:33 +00:00
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
bool Stopwatch::stop() {
|
2016-04-20 19:35:37 +00:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 01:12:08 +00:00
|
|
|
Stopwatch::debug(PSTR("stop"));
|
2016-04-20 19:35:37 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-05 03:23:43 +00:00
|
|
|
if (isRunning() || isPaused()) {
|
|
|
|
state = STOPPED;
|
|
|
|
stopTimestamp = millis();
|
2016-05-22 00:59:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 17:26:33 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
bool Stopwatch::pause() {
|
2016-04-20 19:35:37 +00:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 01:12:08 +00:00
|
|
|
Stopwatch::debug(PSTR("pause"));
|
2016-04-20 19:35:37 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-05 03:23:43 +00:00
|
|
|
if (isRunning()) {
|
|
|
|
state = PAUSED;
|
|
|
|
stopTimestamp = millis();
|
2016-05-22 00:59:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 17:26:33 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
bool Stopwatch::start() {
|
2016-04-20 19:35:37 +00:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 01:12:08 +00:00
|
|
|
Stopwatch::debug(PSTR("start"));
|
2016-04-20 19:35:37 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-25 09:46:02 +00:00
|
|
|
#if ENABLED(EXTENSIBLE_UI)
|
|
|
|
ExtUI::onPrintTimerStarted();
|
|
|
|
#endif
|
|
|
|
|
2018-03-05 03:23:43 +00:00
|
|
|
if (!isRunning()) {
|
|
|
|
if (isPaused()) accumulator = duration();
|
|
|
|
else reset();
|
2016-03-30 17:26:33 +00:00
|
|
|
|
2018-03-05 03:23:43 +00:00
|
|
|
state = RUNNING;
|
|
|
|
startTimestamp = millis();
|
2016-05-22 00:59:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 17:26:33 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 01:22:56 +00:00
|
|
|
void Stopwatch::resume(const millis_t with_time) {
|
2018-04-22 00:06:05 +00:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
|
|
|
Stopwatch::debug(PSTR("resume"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
reset();
|
2018-12-01 01:22:56 +00:00
|
|
|
if ((accumulator = with_time)) state = RUNNING;
|
2018-04-22 00:06:05 +00:00
|
|
|
}
|
|
|
|
|
2016-04-07 11:41:09 +00:00
|
|
|
void Stopwatch::reset() {
|
2016-04-20 19:35:37 +00:00
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
2016-04-27 01:12:08 +00:00
|
|
|
Stopwatch::debug(PSTR("reset"));
|
2016-04-20 19:35:37 +00:00
|
|
|
#endif
|
2016-03-30 17:26:33 +00:00
|
|
|
|
2018-03-05 03:23:43 +00:00
|
|
|
state = STOPPED;
|
|
|
|
startTimestamp = 0;
|
|
|
|
stopTimestamp = 0;
|
|
|
|
accumulator = 0;
|
2016-03-30 17:26:33 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 02:03:42 +00:00
|
|
|
millis_t Stopwatch::duration() {
|
2018-04-22 00:06:05 +00:00
|
|
|
return ((isRunning() ? millis() : stopTimestamp)
|
2018-03-05 03:23:43 +00:00
|
|
|
- startTimestamp) / 1000UL + accumulator;
|
2016-03-30 17:26:33 +00:00
|
|
|
}
|
2016-04-20 19:35:37 +00:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
|
|
|
|
|
|
|
void Stopwatch::debug(const char func[]) {
|
|
|
|
if (DEBUGGING(INFO)) {
|
|
|
|
SERIAL_ECHOPGM("Stopwatch::");
|
|
|
|
serialprintPGM(func);
|
|
|
|
SERIAL_ECHOLNPGM("()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|