void CNewTestDlg::OnStart()
{
// 55 55 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF 03 FD D4 14 01 17 00
CByteArray SendTemp,hexdata;
COleSafeArray safearray_inp;
CString strtemp;
SendTemp.SetSize(24);
SendTemp.SetAt(0,0x55);
SendTemp.SetAt(1,0x55);
SendTemp.SetAt(2,0x00);
SendTemp.SetAt(3,0x00);
SendTemp.SetAt(4,0x00);
SendTemp.SetAt(5,0x00);
SendTemp.SetAt(6,0x00);
SendTemp.SetAt(7,0x00);
SendTemp.SetAt(8,0x00);
SendTemp.SetAt(9,0x00);
SendTemp.SetAt(10,0x00);
SendTemp.SetAt(11,0x00);
SendTemp.SetAt(12,0x00);
SendTemp.SetAt(13,0x00);
SendTemp.SetAt(14,0x00);
SendTemp.SetAt(15,0x00);
SendTemp.SetAt(16,0xFF);
SendTemp.SetAt(17,0x03);
SendTemp.SetAt(18,0xFD);
SendTemp.SetAt(19,0xD4);
SendTemp.SetAt(20,0x14);
SendTemp.SetAt(21,0x01);
SendTemp.SetAt(22,0x17);
SendTemp.SetAt(23,0x00);
m_ctrlComm.SetOutput(COleVariant(SendTemp));
}
然后怎么写才能接收串口返回的数据?
C++如果数据的个数确定,建议使用数组,比较方便。
要接收数据,一般要使用线程。将接收到的数据放到接收缓冲中,再通知 UI 来读取刷新。使用 MSCOMM 控件,接收的处理可能简单一些,但你也需要调用接收的方法。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。