I have a digital compass TDCM3, its manual is here
I want to read direction from TDCM3 on PC or embedded PC(wince), I use pySerial to open a com port and read data from TDCM3:
import serial
# Open COM port
device = serial.Serial(0)
device.setRTS(True)
print device
while True:
data = device.read()
print repr(data)
device.close()
And I connect the TDCM3 to a RS232 to TTL connector
The device.read() just blocked there, never return, I have no idea how to do. I have read its manual, manual said "the interface is USART N.8.1" but I am not familiar with those rs232 stuff, and there is timming diagram on manual, I also don't know how to do whith that.
I am sorry to ask a stupid question, but it is very difficult to find information, or example program about these to figure out how to do.
This is the picture shows that how I configure TDCM3 and RS232 to TTL.

