VS2008 添加VC6串口控件:
m_ctrlComm.put_PortOpen(TRUE) ---打开串口操作。
m_ctrlComm.get_PortOpen() ---换取串口打开状态
m_ctrlComm.put_CommPort() ---设置串口号
m_ctrlComm.put_Settings(“9600,n,8,1”) ; ---设置串口的基本属性
m_ctrlComm.put_InputMode(1); ---1: 表示以二进制的方式检查数据
m_ctrlComm.put_RThreshold(1); //
m_ctrlComm.put_InputLen(0); ----设置当前接受区的数据长度为 0
m_ctrlComm.get_Input(); ---预读缓冲区,可以清除缓冲区的数据
m_ctrlComm.put_Output () ---发送数据函数。
m_ctrlComm是MSComm控件实例化的类型。
文章评论(0条评论)
登录后参与讨论