多媒体调谐器
一个简单的但典型的vc++应用程序源码 here is some code: m_comm.CommConnect(m_cPort); if(m_comm.IsConnected()) { m_comm.SetupConnect(CBR_9600,8,MARKPARITY,ONESTOPBIT); m_comm.WriteCom(&m_cAddress,1); Sleep(100); m_comm.SetupConnect(CBR_9600,8,SPACEPARITY,ONESTOPBIT); m_comm.WriteCom(m_cCmdBuf,6); m_comm.CommDisconnect(); }
用户评论