在Windows Mobile 6设备模拟器中映射虚拟串行端口时找不到端口

本文关键字:串行端口 虚拟 找不到 映射 Mobile Windows 模拟器 | 更新日期: 2023-09-27 18:06:05

我正在开发一个使用条形码扫描器的Windows Mobile 6.5应用程序。我试图在我的开发环境中模拟Windows Mobile 6设备模拟器上扫描仪的行为。

我使用com0com ('COM2'和'COMA')创建了一对虚拟串行端口。我已经确认这两个虚拟串行端口都可以使用超级终端和Portmon。我已经将COM2映射到模拟器中的第一个串行端口('串行端口0')。据我所知,这个端口应该可以在设备上作为'COM1'访问。

在设备上调用SerialPort.GetPortNames()报告三个串口:- 'COM1', 'COM3', 'COM5'。当试图打开该端口时,会抛出IO异常,指出该串行端口不存在。

关于这个问题的可能原因有什么建议吗?

按照请求,打开端口的代码:-

        // Set up the serial port and open
        serialPort.PortName = "COM1";
        serialPort.BaudRate = 9600;
        serialPort.DataBits = 8;
        serialPort.Handshake = Handshake.None;
        serialPort.Parity = Parity.None;
        serialPort.StopBits = StopBits.One;
        serialPort.ReadTimeout = 250;
        serialPort.Open();

在Windows Mobile 6设备模拟器中映射虚拟串行端口时找不到端口

这是6.5设备模拟器图像的一个问题。使用Windows Mobile 6的图片就可以了。