From 52c27889977ea0b1cb2fbae6a6a67d16c6291112 Mon Sep 17 00:00:00 2001 From: Markus Amsler Date: Mon, 21 Feb 2011 15:52:17 +1100 Subject: [PATCH] intercom: updating the extruder in 250ms intervals should be fast enough. --- clock.c | 3 +++ temp.c | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clock.c b/clock.c index 6d035d2..4c8ce34 100644 --- a/clock.c +++ b/clock.c @@ -31,6 +31,9 @@ void clock_250ms() { /* if (temp_get_target()) temp_print();*/ } + #ifdef TEMP_INTERCOM + start_send(); + #endif } void clock_10ms() { diff --git a/temp.c b/temp.c index e9bf188..c944eaa 100644 --- a/temp.c +++ b/temp.c @@ -275,9 +275,6 @@ void temp_sensor_tick() { } } } - #ifdef TEMP_INTERCOM - start_send(); - #endif } uint8_t temp_achieved() {