summaryrefslogtreecommitdiffstats
path: root/app/dcf77.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/dcf77.c')
-rw-r--r--app/dcf77.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/dcf77.c b/app/dcf77.c
index fc2dcda..124eea5 100644
--- a/app/dcf77.c
+++ b/app/dcf77.c
@@ -124,7 +124,7 @@ void dcf77_dispatch (void)
{
static uint32_t last_0, last_1, last_s;
static int second, bit, had_m;
- uint32_t pulse_w, offset;
+ uint32_t pulse_w,offset ;
static uint64_t abs;
int is_s = 0;
@@ -147,7 +147,7 @@ void dcf77_dispatch (void)
if (v) {
pulse_w = now - last_0;
- pulse_w /= (HZ / 1000);
+ pulse_w /= (HW_CLOCK_HZ / 1000);
last_1 = now;
@@ -165,7 +165,7 @@ void dcf77_dispatch (void)
} else {
pulse_w = now - last_1;
- pulse_w /= (HZ / 1000);
+ pulse_w /= (HW_CLOCK_HZ / 1000);
if (pulse_w > 150)
bit = 1;
@@ -182,7 +182,7 @@ void dcf77_dispatch (void)
}
offset = now - last_s;
- offset /= (HZ / 1000);
+ offset /= (HW_CLOCK_HZ / 1000);
if (is_s) {
abs = abs_extend (now);