temp.h: remove indirection temp_tick().
This commit is contained in:
parent
8408d8c294
commit
d29737699f
2
clock.c
2
clock.c
|
|
@ -105,7 +105,7 @@ static void clock_10ms(void) {
|
||||||
// reset watchdog
|
// reset watchdog
|
||||||
wd_reset();
|
wd_reset();
|
||||||
|
|
||||||
temp_tick();
|
temp_sensor_tick();
|
||||||
|
|
||||||
ifclock(clock_flag_250ms) {
|
ifclock(clock_flag_250ms) {
|
||||||
clock_250ms();
|
clock_250ms();
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@ typedef enum {
|
||||||
TT_DUMMY,
|
TT_DUMMY,
|
||||||
} temp_type_t;
|
} temp_type_t;
|
||||||
|
|
||||||
#define temp_tick temp_sensor_tick
|
|
||||||
|
|
||||||
void temp_init(void);
|
void temp_init(void);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue