2017-02-25 04:15:18 -06:00
|
|
|
/**
|
2016-03-30 12:26:33 -05:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-30 12:26:33 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-30 12:26:33 -05: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
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-03-30 12:26:33 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stopwatch.h"
|
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
2019-08-28 04:23:13 -05:00
|
|
|
#if ENABLED(EXTENSIBLE_UI)
|
2020-03-13 16:29:29 -05:00
|
|
|
#include "../lcd/extui/ui_api.h"
|
2019-08-28 04:23:13 -05:00
|
|
|
#endif
|
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
Stopwatch::State Stopwatch::state;
|
|
|
|
millis_t Stopwatch::accumulator;
|
|
|
|
millis_t Stopwatch::startTimestamp;
|
|
|
|
millis_t Stopwatch::stopTimestamp;
|
2016-03-30 12:26:33 -05:00
|
|
|
|
2016-05-21 19:59:59 -05:00
|
|
|
bool Stopwatch::stop() {
|
2020-04-22 16:35:03 -05:00
|
|
|
Stopwatch::debug(PSTR("stop"));
|
2016-04-20 14:35:37 -05:00
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
if (isRunning() || isPaused()) {
|
2020-04-22 16:35:03 -05:00
|
|
|
TERN_(EXTENSIBLE_UI, ExtUI::onPrintTimerStopped());
|
2018-03-04 21:23:43 -06:00
|
|
|
state = STOPPED;
|
|
|
|
stopTimestamp = millis();
|
2016-05-21 19:59:59 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 12:26:33 -05:00
|
|
|
}
|
|
|
|
|
2016-05-21 19:59:59 -05:00
|
|
|
bool Stopwatch::pause() {
|
2020-04-22 16:35:03 -05:00
|
|
|
Stopwatch::debug(PSTR("pause"));
|
2016-04-20 14:35:37 -05:00
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
if (isRunning()) {
|
2020-04-22 16:35:03 -05:00
|
|
|
TERN_(EXTENSIBLE_UI, ExtUI::onPrintTimerPaused());
|
2018-03-04 21:23:43 -06:00
|
|
|
state = PAUSED;
|
|
|
|
stopTimestamp = millis();
|
2016-05-21 19:59:59 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 12:26:33 -05:00
|
|
|
}
|
|
|
|
|
2016-05-21 19:59:59 -05:00
|
|
|
bool Stopwatch::start() {
|
2020-04-22 16:35:03 -05:00
|
|
|
Stopwatch::debug(PSTR("start"));
|
2016-04-20 14:35:37 -05:00
|
|
|
|
2020-04-22 16:35:03 -05:00
|
|
|
TERN_(EXTENSIBLE_UI, ExtUI::onPrintTimerStarted());
|
2019-08-25 04:46:02 -05:00
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
if (!isRunning()) {
|
|
|
|
if (isPaused()) accumulator = duration();
|
|
|
|
else reset();
|
2016-03-30 12:26:33 -05:00
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
state = RUNNING;
|
|
|
|
startTimestamp = millis();
|
2016-05-21 19:59:59 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
2016-03-30 12:26:33 -05:00
|
|
|
}
|
|
|
|
|
2018-11-30 19:22:56 -06:00
|
|
|
void Stopwatch::resume(const millis_t with_time) {
|
2020-04-22 16:35:03 -05:00
|
|
|
Stopwatch::debug(PSTR("resume"));
|
2018-04-21 19:06:05 -05:00
|
|
|
|
|
|
|
reset();
|
2018-11-30 19:22:56 -06:00
|
|
|
if ((accumulator = with_time)) state = RUNNING;
|
2018-04-21 19:06:05 -05:00
|
|
|
}
|
|
|
|
|
2016-04-07 06:41:09 -05:00
|
|
|
void Stopwatch::reset() {
|
2020-04-22 16:35:03 -05:00
|
|
|
Stopwatch::debug(PSTR("reset"));
|
2016-03-30 12:26:33 -05:00
|
|
|
|
2018-03-04 21:23:43 -06:00
|
|
|
state = STOPPED;
|
|
|
|
startTimestamp = 0;
|
|
|
|
stopTimestamp = 0;
|
|
|
|
accumulator = 0;
|
2016-03-30 12:26:33 -05:00
|
|
|
}
|
|
|
|
|
2016-07-12 21:03:42 -05:00
|
|
|
millis_t Stopwatch::duration() {
|
2020-04-03 19:49:45 -05:00
|
|
|
return accumulator + MS_TO_SEC((isRunning() ? millis() : stopTimestamp) - startTimestamp);
|
2016-03-30 12:26:33 -05:00
|
|
|
}
|
2016-04-20 14:35:37 -05:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_STOPWATCH)
|
|
|
|
|
|
|
|
void Stopwatch::debug(const char func[]) {
|
|
|
|
if (DEBUGGING(INFO)) {
|
|
|
|
SERIAL_ECHOPGM("Stopwatch::");
|
2021-02-28 19:43:46 -06:00
|
|
|
SERIAL_ECHOPGM_P(func);
|
2016-04-20 14:35:37 -05:00
|
|
|
SERIAL_ECHOLNPGM("()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|