From d29737699f95e7ab8c89461bac0970e4e714a327 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Sat, 28 Feb 2015 22:56:53 +0100 Subject: [PATCH] temp.h: remove indirection temp_tick(). --- clock.c | 2 +- extruder/temp.h | 1 - temp.h | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/clock.c b/clock.c index e28d632..b2e40c5 100644 --- a/clock.c +++ b/clock.c @@ -105,7 +105,7 @@ static void clock_10ms(void) { // reset watchdog wd_reset(); - temp_tick(); + temp_sensor_tick(); ifclock(clock_flag_250ms) { clock_250ms(); diff --git a/extruder/temp.h b/extruder/temp.h index 8e13a77..f6ab663 100644 --- a/extruder/temp.h +++ b/extruder/temp.h @@ -30,7 +30,6 @@ typedef enum { TT_DUMMY, } temp_type_t; -#define temp_tick temp_sensor_tick void temp_init(void); diff --git a/temp.h b/temp.h index 8e13a77..f6ab663 100644 --- a/temp.h +++ b/temp.h @@ -30,7 +30,6 @@ typedef enum { TT_DUMMY, } temp_type_t; -#define temp_tick temp_sensor_tick void temp_init(void);