From 930b042aabbd9a2bbb6e5d5da36afde8ca935d77 Mon Sep 17 00:00:00 2001 From: Michael Moon Date: Mon, 18 Oct 2010 18:15:00 +1100 Subject: [PATCH] only print temperature if we're not talking to reprap host --- mendel.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mendel.c b/mendel.c index 5783dcb..59ab865 100644 --- a/mendel.c +++ b/mendel.c @@ -135,9 +135,12 @@ void clock_250ms(void) { // Queue print_queue(); } - // temperature - if (temp_get_target()) - temp_print(); + + #ifndef REPRAP_HOST_COMPATIBILITY + // temperature + if (temp_get_target()) + temp_print(); + #endif } }