Air202入坑指南4—UART2
下面的代码就是这个串口的简单使用的代码,可见波特率是115200,8N1.其他就是定义了一个信号量
UART2_RECEIVE
,这个信号量作为接收到信号之后串口怎么处理的标志使用注册串口事件的处理函数
uart.on
。同时下面又实现了两个函数,分别是读取和接收。
--- 模块功能:串口功能测试(TASK版)
-- @author openLuat
-- @module uart.testUartTask
-- @license MIT
-- @copyright openLuat
-- @release 2018.10.20
require "utils"
require "pm"
module(..., package.seeall)
-- 配置串口2
pm.wake("mcuUart.lua")
uart.setup(2, 115200, 8, uart.PAR_NONE, uart.STOP_1)
uart.on(
2,
"receive",
function()
sys.publish("UART2_RECEIVE")
end
)
-- 串口读指令
local function read(uid, timeout)
local cache_data = ""
if timeout == 0 or timeout == nil then
timeout = 20
end
sys.wait(timeout)
while true do
local s = uart.read(uid, "*l")
if s == "" then
return cache_data
else
cache_data = cache_data .. s
end
end
end
function write(uid, s)
log.info("testUart.write", s)
uart.write(uid, s)
end
-- 串口收到什么就返回什么
sys.taskInit(
function()
while true do
if sys.waitUntil("UART2_RECEIVE", 1000) then
local dat = read(2, 20)
log.info(" 串口收到的数据:", dat)
write(2, dat)
else
--write(2, "read wait timeout!")
log.info(" 串口没有收到数据: ")
end
end
end
)
结果如上图显示
版权声明:本文为qq_37214666原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。