用VC實現(xiàn)PC機與單片機的通信
控件ID 類型 數(shù)據(jù)成員
IDC_EDIT1_SEND Cstring m_send
IDC_EDIT2_RECV Cstring m_recv
IDC_MSCOMM1 CMSComm m_comm
IDCANCEL
4)部分源程序代碼如下:
BOOL CChatDlg::OnInitDialog( )
{
CDialog::OnInitDialog( );
// TODO: Add extra initialization here
m_comm.SetCommPort(1); //選擇串口1
if(!m_comm.GetPortOpen( ))
m_comm.SetPortOpen(TRUE); //打開串口1
m_comm.SetSettings(9600,n,8,1); //串口參數(shù)設(shè)置
m_comm.SetRThreshold(1); //當(dāng)串口接收緩沖區(qū)內(nèi)接收字符多于或等于1將觸發(fā)一關(guān)于comEvReceive的OnComm事件。
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CChatDlg::OnChangeEdit1Send( )
{ // TODO: Add your control notification handler code here
int count;
CString temp;
UpdateData(TRUE); //獲取用戶輸入數(shù)據(jù)
count=m_send.GetLength( ); //獲取編輯框內(nèi)字符數(shù)
temp=m_send.GetAt(count-1); //取最新輸入字符
if(!m_comm.GetPortOpen( ))
m_comm.SetPortOpen(TRUE);
m_comm.SetOutput(COleVariant(temp)); //發(fā)送數(shù)據(jù)
if(count= =40) //如輸入字符超過40,清空發(fā)送編輯框
{ m_send.Empty( );
UpdateData(FALSE); //更新編輯框
}
}
void CChatDlg::OnOnCommMscomm 1( )
{
// TODO: Add your control notification handler code here
VARIANT temp;
int count;
if(m_comm.GetCommEvent( )= =2) //串行口數(shù)據(jù)接收處理;
{ count=m_comm.GetInBufferCount( );
m_comm.SetInputLen(count); //利用Input接收字符數(shù)為count
temp=m_comm.GetInput( ); //接收字符
m_recv+=temp.bstrVal; //將接收字符添加到接收框變量中
if(m_recv.GetLength( )= =40) //如輸入字符超過40,清空發(fā)送編輯框
m_recv.Empty( );
UpdateData(FALSE); //更新編輯框
}
}
在此作為演示,此單片機程序功能只是簡單將所收字符再發(fā)送出去,類似可實現(xiàn)各種復(fù)雜通信協(xié)議。將微機與單片機相連后,微機運行chat.exe,單片機運行此程序即可實現(xiàn)兩機通信。
下面是MC68HC908GP32為例的程序清單。
評論