Firmware2/Marlin/src/libs/stopwatch.cpp

107 lines
2.5 KiB
C++
Raw Normal View History

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