Browse Source

Rework some code to use timestamp_t struct (saves 72 bytes)

pull/1/head
João Brázio 8 years ago
committed by Scott Lahteine
parent
commit
23043a1e05
  1. 18
      Marlin/Marlin_main.cpp
  2. 32
      Marlin/printcounter.cpp

18
Marlin/Marlin_main.cpp

@ -60,6 +60,7 @@
#include "pins_arduino.h" #include "pins_arduino.h"
#include "math.h" #include "math.h"
#include "nozzle.h" #include "nozzle.h"
#include "timestamp_t.h"
#if ENABLED(USE_WATCHDOG) #if ENABLED(USE_WATCHDOG)
#include "watchdog.h" #include "watchdog.h"
@ -4055,22 +4056,15 @@ inline void gcode_M17() {
* M31: Get the time since the start of SD Print (or last M109) * M31: Get the time since the start of SD Print (or last M109)
*/ */
inline void gcode_M31() { inline void gcode_M31() {
millis_t t = print_job_timer.duration(); char buffer[21];
int d = int(t / 60 / 60 / 24), timestamp_t time(print_job_timer.duration());
h = int(t / 60 / 60) % 60, time.toString(buffer);
m = int(t / 60) % 60,
s = int(t % 60);
char time[18]; // 123456789012345678
if (d)
sprintf_P(time, PSTR("%id %ih %im %is"), d, h, m, s); // 99d 23h 59m 59s
else
sprintf_P(time, PSTR("%ih %im %is"), h, m, s); // 23h 59m 59s
lcd_setstatus(time); lcd_setstatus(buffer);
SERIAL_ECHO_START; SERIAL_ECHO_START;
SERIAL_ECHOPGM(MSG_PRINT_TIME " "); SERIAL_ECHOPGM(MSG_PRINT_TIME " ");
SERIAL_ECHOLN(time); SERIAL_ECHOLN(buffer);
thermalManager.autotempShutdown(); thermalManager.autotempShutdown();
} }

32
Marlin/printcounter.cpp

@ -22,6 +22,7 @@
#include "Marlin.h" #include "Marlin.h"
#include "printcounter.h" #include "printcounter.h"
#include "timestamp_t.h"
PrintCounter::PrintCounter(): super() { PrintCounter::PrintCounter(): super() {
this->loadStats(); this->loadStats();
@ -92,6 +93,9 @@ void PrintCounter::saveStats() {
} }
void PrintCounter::showStats() { void PrintCounter::showStats() {
char buffer[21];
timestamp_t time;
SERIAL_PROTOCOLPGM(MSG_STATS); SERIAL_PROTOCOLPGM(MSG_STATS);
SERIAL_ECHOPGM("Prints: "); SERIAL_ECHOPGM("Prints: ");
@ -107,17 +111,11 @@ void PrintCounter::showStats() {
SERIAL_EOL; SERIAL_EOL;
SERIAL_PROTOCOLPGM(MSG_STATS); SERIAL_PROTOCOLPGM(MSG_STATS);
uint32_t t = this->data.printTime / 60; time.timestamp = this->data.printTime;
SERIAL_ECHOPGM("Total time: "); time.toString(buffer);
SERIAL_ECHO(t / 60 / 24);
SERIAL_ECHOPGM("d ");
SERIAL_ECHO((t / 60) % 24); SERIAL_ECHOPGM("Total time: ");
SERIAL_ECHOPGM("h "); SERIAL_ECHO(buffer);
SERIAL_ECHO(t % 60);
SERIAL_ECHOPGM("min");
#if ENABLED(DEBUG_PRINTCOUNTER) #if ENABLED(DEBUG_PRINTCOUNTER)
SERIAL_ECHOPGM(" ("); SERIAL_ECHOPGM(" (");
@ -125,17 +123,11 @@ void PrintCounter::showStats() {
SERIAL_ECHOPGM(")"); SERIAL_ECHOPGM(")");
#endif #endif
uint32_t l = this->data.longestPrint / 60; time.timestamp = this->data.longestPrint;
SERIAL_ECHOPGM(", Longest job: "); time.toString(buffer);
SERIAL_ECHO(l / 60 / 24);
SERIAL_ECHOPGM("d ");
SERIAL_ECHO((l / 60) % 24); SERIAL_ECHOPGM(", Longest job: ");
SERIAL_ECHOPGM("h "); SERIAL_ECHO(buffer);
SERIAL_ECHO(l % 60);
SERIAL_ECHOPGM("min");
#if ENABLED(DEBUG_PRINTCOUNTER) #if ENABLED(DEBUG_PRINTCOUNTER)
SERIAL_ECHOPGM(" ("); SERIAL_ECHOPGM(" (");

Loading…
Cancel
Save