我想使用c ++在com端口中发送命令,但这不起作用
for (int i = 0; i < arr.size(); i++)
{
int currEle = arr[i];
/*
How do I use erase + remove_if to remove the elements from arr that
are smaller than currEle?
*/
}
答案 0 :(得分:-1)
Qt包含一个处理串行端口的模块,该模块比Win32 API易于使用。有关更多信息,请参见https://doc.qt.io/qt-5/qtserialport-index.html。