Fix e200v2 radio problem (missing Si4702 initialisation)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21416 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2009-06-20 21:34:27 +00:00
parent 13b8e805c3
commit 4120946f28

View file

@ -295,8 +295,9 @@ void si4700_init(void)
tuner_present = true;
#ifdef USE_INTERNAL_OSCILLATOR
/* enable the internal oscillator */
si4700_write_set(TEST1, TEST1_XOSCEN);
/* Enable the internal oscillator
(Si4702-16 needs this register to be initialised to 0x100) */
si4700_write_set(TEST1, TEST1_XOSCEN | 0x100);
sleep(HZ/2);
#endif
}