Shop OBEX P1 Docs P2 Docs Learn Events
Prototype board serial port confusion — Parallax Forums

Prototype board serial port confusion

Rob SRob S Posts: 2
edited 2007-06-03 23:19 in Propeller 1
I'm an absolute beiginner to the Propeller and a beginner to electronics in general. I'm probably doing something wrong, but I'm trying to use the FullDuplexSerial object to talk to a PC through the usb virtual serial port.

Here's my simple program:

OBJ uart : "FullDuplexSerial"
pub Main
· uart.start(31,30,%0000,9600)
· repeat······················
··· uart.str(string("abcdefg"))
··· waitcnt(cnt + 10_000_000)

When I open HyperTerminal to view the connection I only get the following characters repeated:

¡¢£¤¥¦§· instead of the abcdefg that I expected.

I have HyperTerminal set up as 9600 baud, 8N1 and no flow· control.· Is there a better terminal or is what I'm trying to do not possible?

Thanks in advance!

Comments

Sign In or Register to comment.