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;
|
|
|
|
|
|
|
DCB ser; ser.DCBlength = sizeof (DCB); if (GetCommState (com, &ser)) base = ser.BaudRate; See Configuring a Communications Resource on MSDN. |
||
|
|
|
|
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:
|
||
|
|