From 38986265342da696195bf5002553bcc0be2d9999 Mon Sep 17 00:00:00 2001 From: Casainho Date: Fri, 8 Oct 2010 21:08:52 +1100 Subject: [PATCH] alter temperature reporting in reprap host compatibility mode Signed-off-by: Michael Moon --- temp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temp.c b/temp.c index 517e6d1..7e818c7 100644 --- a/temp.c +++ b/temp.c @@ -191,7 +191,7 @@ void temp_print() { c = (current_temp & 3) * 25; t = (target_temp & 3) * 25; #ifdef REPRAP_HOST_COMPATIBILITY - sersendf_P(PSTR("T: %u.%u\n"), current_temp >> 2, c); + sersendf_P(PSTR(" T: %u.%u\n"), current_temp >> 2, c); #else sersendf_P(PSTR("T: %u.%u/%u.%u :%u\n"), current_temp >> 2, c, target_temp >> 2, t, temp_residency); #endif