Prototype board serial port confusion
Rob S
Posts: 2
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!
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
-Martin
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
StampPlot - GUI and Plotting, and XBee Wireless Adapters
Southern Illinois University Carbondale, Electronic Systems Technologies
-Rob