3

我正在使用Ramon de Klein 的 CSerial 库从我的 C++ 代码中打开和管理串行端口。

我的硬件实现了一个带有 FTDI 芯片的串行 tu USB 转换器,因此我能够将串行端口连接到我 CPU 中的 USB 插头。安装 FTDI 驱动程序后,“设备管理器”(Windows) 中会显示一个虚拟 COM 端口。

如果我尝试打开它,它可以工作。

但现在我已经安装了一个这样的 USB 到以太网服务器。所以我安装了它的驱动程序和软件,在将一些 USB 设备连接到它之后,它被检测到并作为虚拟串行端口添加到“设备管理器”窗口。

但是当我尝试打开端口时,它不起作用。如果我使用类似超级终端的应用程序打开端口,它确实可以工作,就像它是一个普通的串行端口一样,但不是在我的代码中。

CSerial 库就像在创建一个新文件一样工作,并且给定 LastErrorCode 为 2:“找不到文件”。这是 CSerial 库中的 Open 方法:

LONG CSerial::Open (LPCTSTR lpszDevice, DWORD dwInQueue, DWORD dwOutQueue, bool fOverlapped)
{
    // Reset error state
    m_lLastError = ERROR_SUCCESS;

    // Check if the port isn't already opened
    if (m_hFile)
    {
        m_lLastError = ERROR_ALREADY_INITIALIZED;
        _RPTF0(_CRT_WARN,"CSerial::Open - Port already opened\n");
        return m_lLastError;
    }

    // Open the device
    m_hFile = ::CreateFile(lpszDevice,
                           GENERIC_READ|GENERIC_WRITE,
                           0,
                           0,
                           OPEN_EXISTING,
                           fOverlapped?FILE_FLAG_OVERLAPPED:0,
                           0);
    if (m_hFile == INVALID_HANDLE_VALUE)
    {
        // Reset file handle
        m_hFile = 0;

        // Display error
        m_lLastError = ::GetLastError();
        _RPTF0(_CRT_WARN, "CSerial::Open - Unable to open port\n");
        return m_lLastError;
    }

#ifndef SERIAL_NO_OVERLAPPED
    // We cannot have an event handle yet
    _ASSERTE(m_hevtOverlapped == 0);

    // Create the event handle for internal overlapped operations (manual reset)
    if (fOverlapped)
    {
        m_hevtOverlapped = ::CreateEvent(0,true,false,0);
        if (m_hevtOverlapped == 0)
        {
            // Obtain the error information
            m_lLastError = ::GetLastError();
            _RPTF0(_CRT_WARN,"CSerial::Open - Unable to create event\n");

            // Close the port
            ::CloseHandle(m_hFile);
            m_hFile = 0;

            // Return the error
            return m_lLastError;
        }
    }
#else

    // Overlapped flag shouldn't be specified
    _ASSERTE(!fOverlapped);

#endif

    // Setup the COM-port
    if (dwInQueue || dwOutQueue)
    {
        // Make sure the queue-sizes are reasonable sized. Win9X systems crash
        // if the input queue-size is zero. Both queues need to be at least
        // 16 bytes large.
        _ASSERTE(dwInQueue >= 16);
        _ASSERTE(dwOutQueue >= 16);

        if (!::SetupComm(m_hFile,dwInQueue,dwOutQueue))
        {
            // Display a warning
            long lLastError = ::GetLastError();
            _RPTF0(_CRT_WARN,"CSerial::Open - Unable to setup the COM-port\n");

            // Close the port
            Close();

            // Save last error from SetupComm
            m_lLastError = lLastError;
            return m_lLastError;    
        }
    }

    // Setup the default communication mask
    SetMask();

    // Non-blocking reads is default
    SetupReadTimeouts(EReadTimeoutNonblocking);

    // Setup the device for default settings
    COMMCONFIG commConfig = {0};
    DWORD dwSize = sizeof(commConfig);
    commConfig.dwSize = dwSize;
    if (::GetDefaultCommConfig(lpszDevice,&commConfig,&dwSize))
    {
        // Set the default communication configuration
        if (!::SetCommConfig(m_hFile,&commConfig,dwSize))
        {
            // Display a warning
            _RPTF0(_CRT_WARN,"CSerial::Open - Unable to set default communication configuration.\n");
        }
    }
    else
    {
        // Display a warning
        _RPTF0(_CRT_WARN,"CSerial::Open - Unable to obtain default communication configuration.\n");
    }

    // Return successful
    return m_lLastError;
}

我不明白为什么它与将 USB 直接插入计算机的方式不同:我一直认为如果 COM 列在“设备管理器”中,它应该可以工作,而与它真正连接的位置无关。

总的来说,数据的来源是:

RS232--->转换为USB--->USB CPU接口--->在COM口中虚拟化为RS232

现在是:

RS232--->转换为USB--->通过“netUSB服务器”转换为以太网--->CPU的以太网/WiFi--->虚拟化为USB设备--->虚拟化为COM中的RS232港口

有什么帮助吗?

4

1 回答 1

1

问题的出现不是因为硬件元素,而是因为分配给 COM 端口的编号。

当 COM 端口超过 9 时,CreateFile 函数无法打开设备,并返回一个 INVALID_HANDLE_VALUE。

报告了Bug,这里报告了解决方案。

于 2012-07-30T11:29:18.000 回答