summaryrefslogtreecommitdiff
path: root/firmware/drivers/tuner
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/tuner')
-rw-r--r--firmware/drivers/tuner/si4700.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/drivers/tuner/si4700.c b/firmware/drivers/tuner/si4700.c
index 1e2c1888e0..3917095353 100644
--- a/firmware/drivers/tuner/si4700.c
+++ b/firmware/drivers/tuner/si4700.c
@@ -295,8 +295,9 @@ void si4700_init(void)
295 tuner_present = true; 295 tuner_present = true;
296 296
297#ifdef USE_INTERNAL_OSCILLATOR 297#ifdef USE_INTERNAL_OSCILLATOR
298 /* enable the internal oscillator */ 298 /* Enable the internal oscillator
299 si4700_write_set(TEST1, TEST1_XOSCEN); 299 (Si4702-16 needs this register to be initialised to 0x100) */
300 si4700_write_set(TEST1, TEST1_XOSCEN | 0x100);
300 sleep(HZ/2); 301 sleep(HZ/2);
301#endif 302#endif
302 } 303 }