summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/common/timefuncs.c3
-rw-r--r--firmware/drivers/adc.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/firmware/common/timefuncs.c b/firmware/common/timefuncs.c
index 19033a504e..6671dc0739 100644
--- a/firmware/common/timefuncs.c
+++ b/firmware/common/timefuncs.c
@@ -43,12 +43,11 @@ bool valid_time(const struct tm *tm)
43 return true; 43 return true;
44} 44}
45 45
46static int last_tick = 0;
47
48struct tm *get_time(void) 46struct tm *get_time(void)
49{ 47{
50#ifndef SIMULATOR 48#ifndef SIMULATOR
51#ifdef CONFIG_RTC 49#ifdef CONFIG_RTC
50 static long last_tick = 0;
52 51
53 /* Don't read the RTC more than 4 times per second */ 52 /* Don't read the RTC more than 4 times per second */
54 if (last_tick + HZ/4 < current_tick) { 53 if (last_tick + HZ/4 < current_tick) {
diff --git a/firmware/drivers/adc.c b/firmware/drivers/adc.c
index 1755fafb99..f4bdb7a54f 100644
--- a/firmware/drivers/adc.c
+++ b/firmware/drivers/adc.c
@@ -321,7 +321,7 @@ void adc_init(void)
321{ 321{
322 struct adc_struct *adc_battery = &adcdata[ADC_BATTERY]; 322 struct adc_struct *adc_battery = &adcdata[ADC_BATTERY];
323 adc_battery->channelnum = 0x3; /* ADCVIN1, subtractor */ 323 adc_battery->channelnum = 0x3; /* ADCVIN1, subtractor */
324 324 adc_battery->last_read = current_tick;
325 adc_scan(adc_battery); 325 adc_scan(adc_battery);
326} 326}
327 327