PDA

View Full Version : control a PLL for FM



savnik
- 24th October 2006, 09:08
I have write a code to control a PLL for FM
The step is 50Khz
Like : 100.000 - 100.50 - 100.100 - 100.150 - 100.200 ...... 101.000 - 101.50 - 101.100 MHZ.
I want to show 100.050 not 100.50 and the same for 101.50
but i don't know how to fix the problem.

savnik
- 24th October 2006, 11:18
i change this :

LCDOUT #F3 'post the Khz
LCDOUT " MHz "

with :

LCDOUT DEC3 F3, " MHz " ' post the kHz

and work.