Quote Originally Posted by aratti View Post
mus.me, all the ascii from 0 to 31 will give you wierd symboles, and 32 will show nothing because is space. This is the reason why you use the notation dec before the variable to tx.

If you want to receive both decimal and ascii you can tx twice the variable

serout2 so,390,[dec b0, " ", b0,13,10]

or you can select in which format to send out the variable depending on its value

if b0<33 then
serout2 so,390,[dec b0,13,10]
else
serout2 so,390,[b0,13,10]
endif


al.
thank you very much aratti for ur help .i tryed it whith baud 16780 it works good i send from pc to pc and from pic to pc its the same i get using serial communicator of microcode studio .i will try with transmeter and receiver bcz i tryed it using ir it does error .got a amall robot to test likw remote control than i carry on have agreat day ARATTI ...