Hello again,
My newest PCB design includes a PIC16F876a monitoring (2) A2D channels while also recieving serial RF from a LINX rf module; I then ouput all this goodness to an LCD.
I am monitoring battery (9V) battery, and RSSI from LINX RXM-433-LR with the (2) A2D channels, I will be using a third channel later down the road.

The RSSI coming in from the module is nice and consistent (compared to other handheld reciever in room, both same distance from transmitter). My readings are a consistently 1.6-1.65 VDC RMS on both handhelds (at this distance 30'). HOWEVER my battery voltage reading (using (2) 4.7k resistors (divider)) is all over the place 2.3~4.3VDC). Keep in mind My reciever is on the table and not changing distance from transmitter.

This is not my first time around the block with A2D's so I hope I will include enough info as to not come across as well.....dumb. But here we go...

Code:
DEFINE ADC_BITS 8 
ADCON1 = 4 ' AN0,AN1,AN3, are ANALOG, using VDD,VSS, as ref all else digital
Now for the output to LCD...

Code:
    ADCIN PORTA.0, sig1
    ADCIN PORTA.1, VALUE1
    PAUSE 1
    GOSUB DISPLAYa


    DISPLAYa:
    HIGH PORTC.0
    pause 25
    H = ( VALUE1 *100 ) / 51 
    I = H*4   
    LCDOUT 254,Row1,"Batt     ",DEC1 (I / 100 ),".",DEC2 ( I // 100 ),"  V" 
    ; syntax- BARgraph   Value, Row, Col, Width, Range, Style
    @         BARgraph  _Value1,   2,   0,    16,   95,  lines

    Y = ( sig1 *100 ) / 51   'divided down from * 255 / 130
    LCDOUT 254,Row3,"Signal   ",DEC1 (Y / 100 ),".",DEC2 ( Y // 100 ),"  V"                    
    ; syntax- BARgraph   Value, Row, Col, Width, Range, Style
    @         BARgraph  _sig1,   4,   0,    16,   95,  lines
    RETURN
What I would like to know is if this is an rf problem (rf inducing a voltage on my A2D trace or a problem with my resistor values being too high...or something else???) If this is an rf problem, wouldn't my RSSI input also be floating all over the place?
Thanks for any help/ experience you can share.