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
print_queue();
}
// temperature
if (temp_get_target())
temp_print();
#ifndef REPRAP_HOST_COMPATIBILITY
// temperature
if (temp_get_target())
temp_print();
#endif
}
}