Hello Atomski,

a>>
Rx_Byte = Rx_Byte << 1
Rx_Byte.0 = Rx_bit
<<


Switch these two statements around...

Rx_Byte.0 = Rx_bit
Rx_Byte = Rx_Byte << 1

LIke the above...

And you will be ok.

Dwayne