Delphi 调用WIN32 API操作串口


本文整理自网络,侵删。

 一段用API操作串口的代码,还是API好,一目了然,呵呵。
unit main;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Memo1: TMemo;
Memo2: TMemo;
Label1: TLabel;
Label2: TLabel;
RadioGroup1: TRadioGroup;
Button3: TButton;
Button4: TButton;
procedure Button1Click(Sender: TObject);
procedure OpenSerialPort;
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
hSerialPort:Cardinal;
implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
OpenSerialPort;
end;
procedure tform1.OpenSerialPort;
var
cc:TCommConfig;
Temp:string;

begin
Temp:='Com'+inttostr(RadioGroup1.ItemIndex+1);
hSerialPort:=CreateFile(PChar(Temp),GENERIC_READ or GENERIC_WRITE,0,nil,OPEN_EXISTING,0,0);
if (hSerialPort=invalid_handle_value) then
begin
MessageBox(0,'打开串口失败','',MB_OK);
Exit;
end;
GetCommState(hSerialPort,cc.dcb);
cc.dcb.BaudRate:=CBR_9600;
cc.dcb.ByteSize:=8;
cc.dcb.Parity:=NOPARITY;
cc.dcb.StopBits:=ONESTOPBIT;
if not SetCommState(hSerialPort,cc.dcb) then
begin
ShowMessage('不能设置串口');
CloseHandle(hSerialPort);
Exit;
end
else
ShowMessage('打开,并设置成功!');
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
if hSerialPort<>0 then CloseHandle(hSerialPort);
Exit;
end;

procedure TForm1.Button3Click(Sender: TObject);
var
temp:string;
lw:LongWord;
begin
if hSerialPort=0 then Exit;
temp:=Memo1.Text;
WriteFile(hSerialPort,PChar(temp)^,Length(temp),lw,nil);
end;

procedure TForm1.Button4Click(Sender: TObject);
var
tempString:string;
inBuff:array[0..2047]of Char;
bytesRead,dwError:LongWord;
cs:TComStat;
begin
ClearCommError(hSerialPort,dwError,@cs);
if cs.cbInQue>SizeOf(inBuff)then
begin
PurgeComm(hSerialPort,PURGE_RXCLEAR);
Exit;
end;
ReadFile(hSerialPort,inBuff,cs.cbInQue,bytesRead,nil);
tempString:=Copy(inBuff,1,cs.cbInQue);
Memo2.Text:=tempString;
end;

end.

相关阅读 >>

Delphi winsock downloader

Delphi下载程序并且urldownloadtofile的进度提示

Delphi 用sql语句添加删除修改字段

Delphi-dbgrid取得所有表中的值

Delphi xe5实现android 安卓 左侧或者右侧菜单功能

Delphi 倒计时对话框

Delphi的tfilestream

Delphi @ 与 ^ 运算符

Delphi里实现文件格式关联应用程序的功能

Delphi 清除windows 图标缓存源代码

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...