From 61ca4c114ebdac98f4b032c2d4b0286512d77c87 Mon Sep 17 00:00:00 2001 From: Kieran Levin Date: Sat, 16 Apr 2011 23:36:47 -0500 Subject: [PATCH] fixed temperature reading problem where ReplicatorG would freeze because there is no newline before the temperature prints out... --- temp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temp.c b/temp.c index 1349509..6a9578b 100644 --- a/temp.c +++ b/temp.c @@ -339,7 +339,7 @@ void temp_print(temp_sensor_t index) { c = (temp_sensors_runtime[index].last_read_temp & 3) * 25; - sersendf_P(PSTR("T:%u.%u"), temp_sensors_runtime[index].last_read_temp >> 2, c); + sersendf_P(PSTR("\nT:%u.%u"), temp_sensors_runtime[index].last_read_temp >> 2, c); #ifdef HEATER_BED uint8_t b = 0; b = (temp_sensors_runtime[HEATER_BED].last_read_temp & 3) * 25;