新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > C++Builder串口通信設(shè)計(二)-發(fā)送字節(jié)包

C++Builder串口通信設(shè)計(二)-發(fā)送字節(jié)包

作者: 時間:2016-11-28 來源:網(wǎng)絡(luò) 收藏
一、組成

1、PC機

本文引用地址:http://www.butianyuan.cn/article/201611/322878.htm

2、STM32F10x

通過通過串口連接(由相應(yīng)的硬件芯片支持:MAX323或USB轉(zhuǎn)串口芯片等)。

設(shè)計一個由PC機通過串口發(fā)送數(shù)據(jù)包的程序。串口也可采用USB轉(zhuǎn)串口。串口與單片機(stm32F10x通信)。單片機程序是收到數(shù)據(jù)后再通過串口發(fā)回去(發(fā)給PC機)。

二、設(shè)計工程

1、界面

一個mscomm控件;

一個memo1控件顯示串口接收的內(nèi)容;

三個button分別用于串口初始化、發(fā)送、終止程序;


2、串口初始化化部分

//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender) //串口初始化
{
static st=0;
AnsiString s;
if(st==0)
{
try
{
Form1->MSComm1->_CommPort=3;//COM3( 采用USB轉(zhuǎn)串口)
Form1->MSComm1->Settings="9600,n,8,1"; //初始化串口
Form1->MSComm1->InputMode=type; //采用全局變量type設(shè)置傳入數(shù)據(jù)的格式,0表示文本形式 ,1表示二進制格式,初始默認取為1。
Form1->MSComm1->RThreshold=1;
Form1->MSComm1->PortOpen=true; //打開串口
Application->MessageBoxA("串口初始化成功","串口初始化",0);
}
catch(...)
//catch(EOleException&e)
{
Application->MessageBoxA("串口未連接好或已經(jīng)打開","故障提示");
}

Button1->Caption="關(guān)閉";
st=1;
}
else
{
Form1->MSComm1->PortOpen=false;
Button1->Caption="打開";
st=0;
}
}
3、串口中斷接收部分

//---------------------------------------------------------------------------
void __fastcall TForm1::MSComm1Comm(TObject *Sender) //串口接收事件
{
AnsiString str; //聲明一個AnsiString類型的變量
OleVariant rec; //聲明一個用于接收數(shù)據(jù)的OleVariant變量。
int count;
int j;
unsigned char buf[128];

switch(MSComm1->CommEvent)
{
case comEvReceive: //接收事件
if(type==0) //字符型接收
{
str=MSComm1->Input;//收到字符串;
Memo1->Text=Memo1->Text+str+" "; //顯示收到的字符串
}
else //type=1 為二進制接收
{
count=MSComm1->InBufferCount; //字節(jié)數(shù)
rec=MSComm1->Input; //取出接收緩沖器內(nèi)容
for(j=0;j
{
buf[j]=rec.GetElement(j); //轉(zhuǎn)換成字節(jié)類型
}
Memo1->Text=Memo1->Text+"";
for(j=0;j
{
Memo1->Text=Memo1->Text+IntToHex(buf[j],2)+" "; //顯示接收的字節(jié)(以十六進制顯示)
}
}
break;
default: break;
} //switch(MSComm1->CommEvent)
}
//---------------------------------------------------------------------------

4、串口發(fā)送部分

//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender) //發(fā)送
{
int i;
OleVariant send;
int count=5; //發(fā)送包的字節(jié)數(shù)
unsigned char pc_to_stm32[5]={0x80,0x81,0xff,0x05,0x05}; //PC發(fā)出的數(shù)據(jù)包
send=VarArrayCreate(OPENARRAY(int,(0,count-1)),varByte); //創(chuàng)建一個動態(tài)數(shù)組
for(i=0;i
{
send.PutElement(pc_to_stm32[i],i); //填充待發(fā)送的數(shù)據(jù)元素
}
MSComm1->Output=send;//從串口發(fā)送
}

5、程序終止部分

void __fastcall TForm1::Button3Click(TObject *Sender) //退出應(yīng)用程序
{
Application->Terminate();
}

三、運行結(jié)果



評論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉