summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@rockbox.org>2006-03-05 18:34:27 +0000
committerBrandon Low <lostlogic@rockbox.org>2006-03-05 18:34:27 +0000
commitaab008053eac49d0d73c3835b27f77163cfe4a5b (patch)
tree9b7e776c1252f5a5a1712bb3ff6e90985a39df55 /firmware
parent6668b65ef22c5ad6dd13b4a63de22763ff6f93da (diff)
downloadrockbox-aab008053eac49d0d73c3835b27f77163cfe4a5b.tar.gz
rockbox-aab008053eac49d0d73c3835b27f77163cfe4a5b.zip
Fix some yellow builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8913 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-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)
return true;
}
-static int last_tick = 0;
-
struct tm *get_time(void)
{
#ifndef SIMULATOR
#ifdef CONFIG_RTC
+ static long last_tick = 0;
/* Don't read the RTC more than 4 times per second */
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)
{
struct adc_struct *adc_battery = &adcdata[ADC_BATTERY];
adc_battery->channelnum = 0x3; /* ADCVIN1, subtractor */
-
+ adc_battery->last_read = current_tick;
adc_scan(adc_battery);
}