mctr_SComm.put_Output(COleVariant(HexDataBuf)); //发送十六进制数据
时间: 2024-05-24 17:10:28 浏览: 103
mctr-projects
This line of code is written in Microsoft Visual C++ and it sends a hexadecimal data buffer through a serial communication port. The function being used is `put_Output()` which belongs to the object `mctr_SComm`. The hexadecimal data buffer is passed as a parameter to this function through a `COleVariant` object.
阅读全文