深入淺出VC 串列埠程式設計之基於Win32 API

2021-05-02 19:05:03 字數 2914 閱讀 4367

1、api描述

在win32 api中,串列埠使用檔案方式進行訪問,其操作的api基本上與檔案操作的api一致。

開啟串列埠

win32 中用於開啟串列埠的api 函式為createfile,其原型為:

例如,以下程式用於以同步讀寫方式開啟串列埠com1:

handle hcom;

dword dwerror;

hcon = createfile("com1", generic_read | generic_write, 0, null, open_existing, 0, null);

if (hcom == (handle)0xffffffff)

配置串列埠

配置串列埠是通過改變裝置控制塊dcb(device control block) 的成員變數值來實現的,接收緩衝區和傳送緩衝區的大小可通過setupcomm函式來設定。

dcb結構體定義為:

typedef struct _dcb dcb;

而setupcomm函式的原型則為:

bool setupcomm(

handle hfile, // handle to communications device

dword dwinqueue, // size of input buffer

dword dwoutqueue // size of output buffer);

以下程式將串列埠設定為:波特率為9600,資料位數為7位,停止位為2 位,偶校驗,接收緩衝區和傳送緩衝區大小均為1024個位元組,最後用purgecomm函式終止所有的後台讀寫操作並清空接收緩衝區和傳送緩衝區:

dcb dcb;

dcb.baudrate = 9600; //波特率為9600

dcb.bytesize = 7; //資料位數為7位

dcb.parity = evenparity; //偶校驗

dcb.stopbits = 2; //兩個停止位

dcb.fbinary = true;

dcb.fparity = true;

if (!setcommstate(hcom, &dcb))

setupcomm(hcom, 1024, 1024);

purgecomm(hcom, purce_txabort | purge_rxabort | purge_txclear | purge_rxclear);

超時設定

超時設定是通過改變commtimeouts結構體的成員變數值來實現的,commtimeouts的原型為:

typedef struct _commtimeouts

commtimeouts, *lpcommtimeouts;

設定超時的函式為setcommtimeouts,其原型中接收commtimeouts的指標為引數:

bool setcommtimeouts(

handle hfile, // handle to communications device

lpcommtimeouts lpcommtimeouts // pointer to comm time-out structure);

以下程式將串列埠讀操作的超時設定為10 毫秒:

commtimeouts to;

memset(&to, 0, sizeof(to));

to.readintervaltimeout = 10;

setcommtimeouts(hcom, &to);

與setcommtimeouts對應的getcommtimeouts()函式的原型為:

bool getcommtimeouts(

handle hfile, // handle of communications device

lpcommtimeouts lpcommtimeouts // pointer to comm time-out structure);

事件設定

在讀寫串列埠之前,需要用setcommmask ()函式設定事件掩模來監視指定通訊埠上的事件,其原型為:

bool setcommmask(

handle hfile, //標識通訊埠的控制代碼

dword dwevtmask //能夠使能的通訊事件);

有了set當然還會有get,與setcommmask對應的getcommmask()函式的原型為:

bool getcommmask(

handle hfile, //標識通訊埠的控制代碼

lpdword lpevtmask // address of variable to get event mask);

串列埠上可以發生的事件可以是如下事件列表中的乙個或任意組合:ev_break、ev_cts、ev_dsr、ev_err、ev_ring、ev_rlsd、ev_rxchar、ev_rxflag、ev_txempty。

我們可以用waitcommevent()函式來等待串列埠上我們利用setcommmask ()函式設定的事件:

waitcommevent()函式一直阻塞,直到串列埠上發生我們用所setcommmask ()函式設定的通訊事件為止。一般而言,當waitcommevent()返回時,程式設計師可以由分析*lpevtmask而獲得發生事件的類別,再進行相應的處理。

讀串列埠

對串列埠進行讀取所用的函式和對檔案進行讀取所用的函式相同,讀函式原型如下:

寫串列埠

對串列埠進行寫入所用的函式和對檔案進行寫入所用的函式相同,寫函式原型如下:

關閉串列埠

利用api 函式實現串列埠通訊時關閉串列埠非常簡單,只需使用createfile 函式返回的控制代碼作為引數呼叫closehandle 即可:

bool closehandle(

handle hobject // handle to object to close);

深入淺出VC 串列埠程式設計 基於控制項

visual c 為我們提供了一種好用的activex控制項microsoft communications control 即mscomm 來支援應用程式對串列埠的訪問,在應用程式中插入mscomm控制項後就可以較為方便地實現對通過計算機串列埠收發資料。要使用activex控制項mscomm,程式...

深入淺出VC 串列埠程式設計之基於Win32 API

1 api描述 在win32 api中,串列埠使用檔案方式進行訪問,其操作的api基本上與檔案操作的api一致。開啟串列埠 win32 中用於開啟串列埠的api 函式為createfile,其原型為 例如,以下程式用於以同步讀寫方式開啟串列埠com1 handle hcom dword dwerro...

深入淺出VC 串列埠程式設計之基於Win32 API

1 api描述 在win32 api中,串列埠使用檔案方式進行訪問,其操作的api基本上與檔案操作的api一致。開啟串列埠 win32 中用於開啟串列埠的api 函式為createfile,其原型為 例如,以下程式用於以同步讀寫方式開啟串列埠com1 handle hcom dword dwerro...