Link to home
Start Free TrialLog in
Avatar of plainman98
plainman98

asked on

Maximum baud rate in Visual Basic 2005 on Windows Mobile 5?

I'm connecting a bluetooth SPP device to an ipaq.  It runs at 115200 bps.  I'm using a VB 2005 serialPort object.  The device worked at 38400 bps.  A terminal emulator communicates with the device at 115200 bps, but my program in VB reports an error:

"Unable to open Serial Port System.ArguementOutofRangeException: The maximum baud rate for the device is 65536.  Parameter name: baudRate at System.IO.Ports.SerialStream...."

This error cannot be correct.  The device works fine at that baud rate.  The VB documentation states that the port is functional at 115200 bps.  I find it curious that 65536 is the number for 2^16.  The baud rate data type is integer, but it should be 32 bits.

My question:  How do can VB 2005 in windows mobile 5 be set to run at 115200 bits per second?

The program is not set to dynamically change the baud rate.  The baud rate property in VS for the serial port has 115200.  I have a label text value that shows the current setting is 115200 when the form loads.

Any help would be appreciated.
SOLUTION
Avatar of AdamsConsulting
AdamsConsulting
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of plainman98
plainman98

ASKER

I don't know what driver the terminal emulator is using.  It makes sense that they might be different however the subsystem on windows mobile 5.0 isn't as easy to pry into.  The VB project uses the driver that visual studio deploys with... How would one check that?  The serialport component that ships with visual studio 2005 uses what driver under the hood?  I would imagine that the driver is different for windows xp than for windows mobile.
I just found this on http://www.learningce.com/Discuss/Windows+CE/773.aspx
[quote]
Hello Everyone,

I am posting this on behalf of Phytec, a vendor for a great PXA270 board, which features a processor module and carrier board.  The carrier board allows easy customization of the interface to the PXA270, while allowing the processor module hardware to remain unchanged.  To the question at hand...

When using .NET CF with Windows CE serial drivers, if an application requests data rates beyond 115.2 Kbps by assigning the value of the System.IO.Ports.SerialPort.BaudRate member a bit rate beyond 115.2 Kbps (i.e. a value of 1000000 for 1 Mbps), an error value may be returned.  This is true even with custom serial drivers unless a particular change is made to the default serial driver code provided with Platform Builder.  This change is described below:

Windows CE serial port drivers are required to implement the IOCTL IOCTL_SERIAL_GET_PROPERTIES in the COM_IOControl function.  This IOCTL returns a reference to the COMMPROP structure, which contains a member which is of particular importance in answering this question.  This member is called dwMaxBaud and it informs the caller of the maximum supported bit rate for the serial driver.  When a customized CE serial driver needs to indicate to a calling .NET CF application that data rates beyond 115.2 Kbps are supported, this member must be assigned the actual value of the highest supported data rate in bits per second.  So, for example, if the serial driver supports a maximum data rate of 13 Mbps, a value of 13000000 must be assigned to the COMMPROP.dwMaxBaud member.

For those serial drivers which use the CSerialPDD::SetDefaultConfiguration member function in the MDD layer, this will require that this member function be overridden in the derived class to modify the assignment of the dwMaxBaud member with the desired maximum bit rate.  If this is not done, then a custom serial driver will report a maximum bit rate of 115.2 Kbps to .NET CF applications.

Making this change to the serial driver will then allow .NET CF applications to assign the value of the System.IO.Ports.SerialPort.BaudRate member a value up to the value of the dwMaxBaud member.  As in our above example, the .NET CF application would then be able to assign the System.IO.Ports.SerialPort.BaudRate member a value of 13000000 to request a data rate of 13 Mbps.

Jim
(on behalf of Josie Adams of Phytec)
[/quote]

I guess my question should be:

How in VB code can this be done: force the max baud rate higher than it is currently set for the driver in use?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Closed