Is there a way to find out all the available baud rates that a particular system supports via C#? This is available through Device Manager-->Ports but I want to list these programatically.
Thanks.
|
Is there a way to find out all the available baud rates that a particular system supports via C#? This is available through Device Manager-->Ports but I want to list these programatically. Thanks.
| |||
|
feedback
|
|
I have found a couple of ways to do this. The following two documents were a starting point
The clue is in the following paragraph from the first document
At this stage there are two choices to do this in C#: 1.0 Use interop (P/Invoke) as follows:Define the following data structure
Then define the following signatures
Now make the following calls (refer to http://msdn.microsoft.com/en-us/library/aa363858(VS.85).aspx)
Where portName is something like COM?? (COM1, COM2, etc). commProp.dwSettableBaud should now contain the desired information. 2.0 Use C# reflectionReflection can be used to access the SerialPort BaseStream and thence the required data as follows:
Note that in both the methods above the port(s) has to be opened at least once to get this data. | |||
feedback
|
|
I don't think you can. I recently had this problem, and ended up hard coding the baud rates I wanted to use. MSDN simply states, "The baud rate must be supported by the user's serial driver". | |||||||
feedback
|