only print temperature if we're not talking to reprap host

This commit is contained in:
Michael Moon 2010-10-18 18:15:00 +11:00
parent 56c355c5bd
commit 930b042aab
1 changed files with 6 additions and 3 deletions

View File

@ -135,9 +135,12 @@ void clock_250ms(void) {
// Queue // Queue
print_queue(); print_queue();
} }
#ifndef REPRAP_HOST_COMPATIBILITY
// temperature // temperature
if (temp_get_target()) if (temp_get_target())
temp_print(); temp_print();
#endif
} }
} }