Change the end of SD cart print message from minutes/seconds to hours/minutes.

This commit is contained in:
daid303 2012-12-19 12:26:40 +01:00
parent 30254e3388
commit b69cb9fbd9

View File

@ -528,10 +528,10 @@ void get_command()
stoptime=millis();
char time[30];
unsigned long t=(stoptime-starttime)/1000;
int sec,min;
min=t/60;
sec=t%60;
sprintf_P(time, PSTR("%i min, %i sec"),min,sec);
int hours, minutes;
minutes=(t/60)%60;
hours=t/60/60;
sprintf_P(time, PSTR("%i hours %i minutes"),hours, minutes);
SERIAL_ECHO_START;
SERIAL_ECHOLN(time);
lcd_setstatus(time);