summaryrefslogtreecommitdiffstats
path: root/app/pll.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/pll.c')
-rw-r--r--app/pll.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/pll.c b/app/pll.c
index 986034c..19681d8 100644
--- a/app/pll.c
+++ b/app/pll.c
@@ -8,7 +8,7 @@
static int64_t offset;
static int64_t phase;
-int64_t pll_freq = HZ;
+int64_t pll_freq = HW_CLOCK_HZ;
static int out_of_lock = JUMP_TICKS + 1;
@@ -102,7 +102,7 @@ static void modify_pll_freq (uint64_t now, int d)
uint64_t make_happy (uint64_t abs, int64_t shift)
{
- shift *= HZ;
+ shift *= HW_CLOCK_HZ;
if (shift < 0) {
shift = -shift;
@@ -170,7 +170,7 @@ void pll_dispatch (uint64_t happy, uint64_t edge, const char *src)
if (happy < msf_last_happy) return;
- if (!pll_ready && (edge < ((uint64_t) WARM_UP * (uint64_t) HZ)))
+ if (!pll_ready && (edge < ((uint64_t) WARM_UP * (uint64_t) HW_CLOCK_HZ)))
return;
led_blink (100);
@@ -211,7 +211,7 @@ void pll_dispatch (uint64_t happy, uint64_t edge, const char *src)
phase += pd;
out_of_lock = 0;
printf ("PLL - jumping\r\n");
- pll_freq = HZ;
+ pll_freq = HW_CLOCK_HZ;
pll_ready = 1;
} else {