Doing some more testing and decided to try out sending serial from the 12f675 to hyperterm and get wierd results as well. Its like its not sending the right ascii codes. For instance if I send a 1 then a white smiley face shows in hyperterm. If I send a 2 its a black smiley face. I ran the code below and all I get is an extended character list it seems.
I think if I get this send figured out, then I might get the receive to work right. Hyperterm is set to 2400,8,N,1, no flow control.Code:INCLUDE "modedefs.bas" DEFINE OSC 4 ANSEL=%00000000 CMCON=7 dataout var byte dataout = 0 main: SerOut 0,N2400,[DataOut] pause 100 dataout=dataout+1 goto main




Bookmarks