vote up 0 vote down star

Is there a windows call to get the baud base frequency, like this one in linux.

struct serial_struct ser;
ioctl(com, TIOCGSERIAL, &ser);
base = ser.baud_base;
flag

2 Answers

vote up 0 vote down
DCB ser;
ser.DCBlength = sizeof (DCB);
if (GetCommState (com, &ser))
  base = ser.BaudRate;

See Configuring a Communications Resource on MSDN.

link|flag
vote up 0 vote down

No, what I'm after is the internal clock used for generating baud rates. I want to calculate what non standard baud rates are possible to set. In linux it's:

struct serial_struct ser;
ioctl(com, TIOCGSERIAL, &ser);
base = ser.baud_base;
baudrate = ser.baud_base / ser.custom_divisor;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.