把串口做成一個控件并不新鮮,在VB里有個通信組件,就是用來簡化串口編程的。最近AWTK也提供了這樣一個控件serial_widget,本文介紹一下它的使用方法。
基本功能我們編寫一個簡單的應(yīng)用程序,它有兩個功能:
- 把收到的數(shù)據(jù)顯示出來。
- 把界面輸入的數(shù)據(jù)發(fā)送給對方。
UI界面描述文件
"open" text="Open Device" x="10" y="100" w="160" h="36" /> "device"x="180"y="100"w="-200"h="36"text="/dev/ttys032"/> "send"text="SendMessage"x="10"y="150"w="160"h="36"/> "send_msg"x="180"y="150"w="-200"h="36"text="helloserial"/> "recv_msg"x="c"y="b:100"w="90%"h="100"/> "serial"/> 接收數(shù)據(jù)?先注冊數(shù)據(jù)事件的處理函數(shù)。
widget_child_on(win, "serial", EVT_DATA, on_data, win);
?在處理函數(shù)中讀取數(shù)據(jù)并顯示到界面上。
static ret_t on_data(void* ctx, event_t* e) { char text[128] = {0}; widget_t* win = WIDGET(ctx); serial_widget_t* serial = SERIAL_WIDGET(e->target); widget_t* label = widget_lookup(win, "recv_msg", TRUE); int32_t len = tk_istream_read(serial->istream, text, sizeof(text)-1); if(len > 0) {
text[len] = '\0';
widget_set_text_utf8(label, text);
}returnRET_OK;
}
發(fā)送數(shù)據(jù)
從界面讀取數(shù)據(jù),并發(fā)送到串口。
static ret_t on_send(void* ctx, event_t* e) { char text[128] = {0}; widget_t* win = WIDGET(ctx); serial_widget_t* serial = SERIAL_WIDGET(widget_lookup(win, "serial", TRUE)); widget_t* edit = widget_lookup(win, "send_msg", TRUE);
widget_get_text_utf8(edit, text, sizeof(text)-1);
tk_ostream_write_len(serial->ostream, text, strlen(text), 3000); return RET_OK;
}
完整代碼請參考 serial 可以下載 awtk-c-demos 編譯運(yùn)行。
./bin/demo_serial
測試
下面操作是在 Linux/MacOS 上測試的,Windows 下需要安裝虛擬串口軟件,具體做法有些不同,請自行調(diào)整。
?使用socat創(chuàng)建虛擬串口
socat -d -d pty,raw,echo=0 pty,raw,echo=0
該命令會生成兩個設(shè)備文件,對應(yīng)串口的兩端(每次生成的設(shè)備名可能不同)。
2022/07/08 16:32:33 socat[1879] N PTY is /dev/ttys0322022/07/08 16:32:33 socat[1879] N PTY is /dev/ttys0332022/07/08 16:32:33 socat[1879] N starting data transfer loop with FDs [5,5] and [7,7]
?在AWTK 這端我們使用設(shè)備/dev/ttys032
?在另外一端讀取數(shù)據(jù)
打開一個新的終端,并運(yùn)行下面的命令(有數(shù)據(jù)時自動顯示出來):
cat /dev/ttys033
?在另外一端發(fā)送數(shù)據(jù)
打開一個新的終端,并運(yùn)行下面的命令(發(fā)送當(dāng)前時間字符串):
date >/dev/ttys033
使用fscript進(jìn)行串口編程
也可以使用 fscript 進(jìn)行串口編程(配合 AWBlock 就簡單了)。AWTK 里提供一個與前面功能相同的例子,總體來看要簡潔不少。
"打開設(shè)備" x="16" y="15" w="76" h="34" > "on:click"> var device = widget_get('device', 'text') widget_set('serial','device', device)
"device" x="119" y="13" w="178" h="38" text="/dev/ttys028" />
"recv" x="5" y="123" w="303" h="101" />
"send" text="hello serial" x="5" y="273" w="200" h="34" />
"button" tr_text="send" x="220" y="274" w="81" h="34" > "on:click"> var os = widget_get('serial','ostream') var msg = widget_get('send', 'text') ostream_write_string(os, msg)
"serial">
"on:data">
var is = widget_get('self','istream')
var msg = istream_read_string(is, 100, 0)
widget_set('recv', 'text', msg)
在 AWTK 根目錄下可以運(yùn)行該例子,測試方法與前面相同。
./bin/preview_ui design/default/ui/serial.xml
移植
目前串口只實現(xiàn)了Windows, Linux, MacOS, Android 和 AWorks 等平臺,其它平臺需要自己移植。
請參考AWorks平臺的移植:
src/platforms/aworkslp/serial_helper.c
【版權(quán)聲明】本文為ZLG開發(fā)者社區(qū)用戶原創(chuàng)內(nèi)容,未經(jīng)授權(quán)不得轉(zhuǎn)載。
-
串口通信
+關(guān)注
關(guān)注
34文章
1627瀏覽量
55630
發(fā)布評論請先 登錄
相關(guān)推薦
評論