jeanlo
10-28-2002, 04:11 PM
I'm trying to develop an application that uses simple serial communication to interact with another device.
I'm using the following code to initialize the settings to have 8 data bits, 1 stop bit, and no parity:
flags = srmSettingsFlagBitsPerChar8 | srmSettingsFlagStopBits1;
err = SrmControl(gPortID, srmCtlSetFlags, &flags, &flagsSize);
Basically, my problem is that the Palm seems to still be waiting for the CTS signal. I thought that with my code, I had turned off all handshaking. If not, can someone tell me how I'm supposed to?
Jean
I'm using the following code to initialize the settings to have 8 data bits, 1 stop bit, and no parity:
flags = srmSettingsFlagBitsPerChar8 | srmSettingsFlagStopBits1;
err = SrmControl(gPortID, srmCtlSetFlags, &flags, &flagsSize);
Basically, my problem is that the Palm seems to still be waiting for the CTS signal. I thought that with my code, I had turned off all handshaking. If not, can someone tell me how I'm supposed to?
Jean