2017-02-25 10:15:18 +00:00
|
|
|
/**
|
2016-04-27 01:12:08 +00: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 "Marlin.h"
|
|
|
|
#include "printcounter.h"
|
2016-07-24 02:13:35 +00:00
|
|
|
#include "duration_t.h"
|
2016-04-27 01:12:08 +00:00
|
|
|
|
2016-04-27 01:12:46 +00:00
|
|
|
PrintCounter::PrintCounter(): super() {
|
|
|
|
this->loadStats();
|
|
|
|
}
|
|
|
|
|
2016-07-13 02:03:42 +00:00
|
|
|
millis_t PrintCounter::deltaDuration() {
|
2016-04-28 01:30:07 +00:00
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("deltaDuration"));
|
|
|
|
#endif
|
|
|
|
|
2016-07-13 02:03:42 +00:00
|
|
|
millis_t tmp = this->lastDuration;
|
2016-04-28 01:30:07 +00:00
|
|
|
this->lastDuration = this->duration();
|
|
|
|
return this->lastDuration - tmp;
|
|
|
|
}
|
|
|
|
|
2016-04-27 01:12:46 +00:00
|
|
|
bool PrintCounter::isLoaded() {
|
|
|
|
return this->loaded;
|
|
|
|
}
|
|
|
|
|
2016-07-14 01:18:59 +00:00
|
|
|
void PrintCounter::incFilamentUsed(double const &amount) {
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("incFilamentUsed"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Refuses to update data if object is not loaded
|
|
|
|
if (!this->isLoaded()) return;
|
|
|
|
|
|
|
|
this->data.filamentUsed += amount; // mm
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-27 01:12:46 +00:00
|
|
|
void PrintCounter::initStats() {
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("initStats"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
this->loaded = true;
|
2016-07-14 01:18:59 +00:00
|
|
|
this->data = { 0, 0, 0, 0, 0.0 };
|
2016-04-27 01:12:46 +00:00
|
|
|
|
|
|
|
this->saveStats();
|
2016-04-28 14:40:24 +00:00
|
|
|
eeprom_write_byte((uint8_t *) this->address, 0x16);
|
2016-04-27 01:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintCounter::loadStats() {
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("loadStats"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Checks if the EEPROM block is initialized
|
2016-04-28 14:40:24 +00:00
|
|
|
if (eeprom_read_byte((uint8_t *) this->address) != 0x16) this->initStats();
|
2016-07-14 01:18:59 +00:00
|
|
|
else eeprom_read_block(&this->data,
|
|
|
|
(void *)(this->address + sizeof(uint8_t)), sizeof(printStatistics));
|
2016-04-27 01:12:46 +00:00
|
|
|
|
|
|
|
this->loaded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintCounter::saveStats() {
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("saveStats"));
|
|
|
|
#endif
|
|
|
|
|
2016-07-14 01:18:59 +00:00
|
|
|
// Refuses to save data if object is not loaded
|
2016-04-27 01:12:46 +00:00
|
|
|
if (!this->isLoaded()) return;
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
// Saves the struct to EEPROM
|
2016-07-14 01:18:59 +00:00
|
|
|
eeprom_update_block(&this->data,
|
|
|
|
(void *)(this->address + sizeof(uint8_t)), sizeof(printStatistics));
|
2016-04-27 01:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintCounter::showStats() {
|
2016-07-22 14:47:56 +00:00
|
|
|
char buffer[21];
|
2016-07-24 02:13:35 +00:00
|
|
|
duration_t elapsed;
|
2016-07-22 14:47:56 +00:00
|
|
|
|
2016-07-14 01:18:59 +00:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_STATS);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("Prints: ");
|
2016-04-27 01:12:46 +00:00
|
|
|
SERIAL_ECHO(this->data.totalPrints);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM(", Finished: ");
|
|
|
|
SERIAL_ECHO(this->data.finishedPrints);
|
|
|
|
|
2016-07-14 01:18:59 +00:00
|
|
|
SERIAL_ECHOPGM(", Failed: "); // Note: Removes 1 from failures with an active counter
|
2016-04-28 01:30:07 +00:00
|
|
|
SERIAL_ECHO(this->data.totalPrints - this->data.finishedPrints
|
2016-07-14 01:18:59 +00:00
|
|
|
- ((this->isRunning() || this->isPaused()) ? 1 : 0));
|
|
|
|
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_EOL();
|
2016-07-14 01:18:59 +00:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_STATS);
|
2016-04-27 01:12:46 +00:00
|
|
|
|
2016-07-24 02:13:35 +00:00
|
|
|
elapsed = this->data.printTime;
|
|
|
|
elapsed.toString(buffer);
|
2016-07-14 01:18:59 +00:00
|
|
|
|
2016-07-22 14:47:56 +00:00
|
|
|
SERIAL_ECHOPGM("Total time: ");
|
|
|
|
SERIAL_ECHO(buffer);
|
2016-04-27 01:12:46 +00:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
SERIAL_ECHOPGM(" (");
|
|
|
|
SERIAL_ECHO(this->data.printTime);
|
2017-03-18 15:17:00 +00:00
|
|
|
SERIAL_CHAR(')');
|
2016-04-27 01:12:46 +00:00
|
|
|
#endif
|
|
|
|
|
2016-07-24 02:13:35 +00:00
|
|
|
elapsed = this->data.longestPrint;
|
|
|
|
elapsed.toString(buffer);
|
2016-07-14 01:18:59 +00:00
|
|
|
|
2016-07-22 14:47:56 +00:00
|
|
|
SERIAL_ECHOPGM(", Longest job: ");
|
|
|
|
SERIAL_ECHO(buffer);
|
2016-07-14 01:18:59 +00:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
SERIAL_ECHOPGM(" (");
|
|
|
|
SERIAL_ECHO(this->data.longestPrint);
|
2017-03-18 15:17:00 +00:00
|
|
|
SERIAL_CHAR(')');
|
2016-07-14 01:18:59 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_EOL();
|
2016-07-14 01:18:59 +00:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_STATS);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("Filament used: ");
|
|
|
|
SERIAL_ECHO(this->data.filamentUsed / 1000);
|
|
|
|
SERIAL_ECHOPGM("m");
|
|
|
|
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_EOL();
|
2016-04-27 01:12:46 +00:00
|
|
|
}
|
2016-04-27 01:12:08 +00:00
|
|
|
|
|
|
|
void PrintCounter::tick() {
|
|
|
|
if (!this->isRunning()) return;
|
|
|
|
|
2016-07-14 01:18:59 +00:00
|
|
|
static uint32_t update_last = millis(),
|
|
|
|
eeprom_last = millis();
|
2016-04-27 01:12:08 +00:00
|
|
|
|
2016-07-13 02:03:42 +00:00
|
|
|
millis_t now = millis();
|
2016-04-27 01:12:08 +00:00
|
|
|
|
|
|
|
// Trying to get the amount of calculations down to the bare min
|
|
|
|
const static uint16_t i = this->updateInterval * 1000;
|
|
|
|
|
2016-07-14 01:18:59 +00:00
|
|
|
if (now - update_last >= i) {
|
2016-04-27 01:12:46 +00:00
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("tick"));
|
|
|
|
#endif
|
|
|
|
|
2016-04-28 01:30:07 +00:00
|
|
|
this->data.printTime += this->deltaDuration();
|
2016-07-14 01:18:59 +00:00
|
|
|
update_last = now;
|
2016-04-27 01:12:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Trying to get the amount of calculations down to the bare min
|
2016-07-13 02:03:42 +00:00
|
|
|
const static millis_t j = this->saveInterval * 1000;
|
2016-07-14 01:18:59 +00:00
|
|
|
if (now - eeprom_last >= j) {
|
|
|
|
eeprom_last = now;
|
2016-04-27 01:12:46 +00:00
|
|
|
this->saveStats();
|
2016-04-27 01:12:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
// @Override
|
|
|
|
bool PrintCounter::start() {
|
2016-04-27 01:12:46 +00:00
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("start"));
|
|
|
|
#endif
|
2016-04-27 01:12:08 +00:00
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
bool paused = this->isPaused();
|
|
|
|
|
|
|
|
if (super::start()) {
|
|
|
|
if (!paused) {
|
|
|
|
this->data.totalPrints++;
|
|
|
|
this->lastDuration = 0;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2017-04-26 07:43:11 +00:00
|
|
|
|
|
|
|
return false;
|
2016-04-27 01:12:08 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
// @Override
|
|
|
|
bool PrintCounter::stop() {
|
2016-04-27 01:12:08 +00:00
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
2016-04-27 01:12:46 +00:00
|
|
|
PrintCounter::debug(PSTR("stop"));
|
2016-04-27 01:12:08 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
if (super::stop()) {
|
|
|
|
this->data.finishedPrints++;
|
|
|
|
this->data.printTime += this->deltaDuration();
|
2016-07-14 01:18:59 +00:00
|
|
|
|
|
|
|
if (this->duration() > this->data.longestPrint)
|
|
|
|
this->data.longestPrint = this->duration();
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
this->saveStats();
|
2016-05-22 12:14:58 +00:00
|
|
|
return true;
|
2016-05-22 00:59:59 +00:00
|
|
|
}
|
|
|
|
else return false;
|
2016-04-27 01:12:08 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 00:59:59 +00:00
|
|
|
// @Override
|
2016-04-27 01:12:46 +00:00
|
|
|
void PrintCounter::reset() {
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
PrintCounter::debug(PSTR("stop"));
|
|
|
|
#endif
|
2016-04-27 01:12:08 +00:00
|
|
|
|
2016-04-27 01:12:46 +00:00
|
|
|
super::reset();
|
2016-05-22 00:59:59 +00:00
|
|
|
this->lastDuration = 0;
|
2016-04-27 01:12:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(DEBUG_PRINTCOUNTER)
|
|
|
|
|
|
|
|
void PrintCounter::debug(const char func[]) {
|
|
|
|
if (DEBUGGING(INFO)) {
|
|
|
|
SERIAL_ECHOPGM("PrintCounter::");
|
|
|
|
serialprintPGM(func);
|
|
|
|
SERIAL_ECHOLNPGM("()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|