我正在使用Ramon de Klein's CSerial library来打开和管理来自我的C ++代码的串口。
我的硬件实现了带有FTDI芯片的串行调制USB转换器,因此我可以将串行端口连接到CPU中的USB插头。安装FTDI驱动程序后,“设备管理器”(Windows)中将显示虚拟COM端口。
如果我尝试打开它,它就可以了。
但是现在我已经安装了USB到以太网服务器,如this one。所以我安装了它的驱动程序和软件,在连接了一些usb设备后,它被检测到,并作为虚拟串口添加到“设备管理器”窗口。
但是当我尝试打开端口时,它不起作用。 如果我使用类似HyperTerminal的应用程序打开端口,就好像它是一个普通的串行端口,但不在我的代码中。
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
任何帮助?
答案 0 :(得分:1)
出现的问题不是因为硬件元素,而是因为分配给COM端口的编号。
当COM端口超过9时,CreateFile函数无法打开设备,并返回INVALID_HANDLE_VALUE。
报告错误,并报告解决方案here。