From 43d055054fc3eee6d0c63f429a14ce74712626c1 Mon Sep 17 00:00:00 2001 From: chen <15335560115@163.com> Date: 星期四, 22 五月 2025 18:08:48 +0800 Subject: [PATCH] 初步写好MK与蓝牙的传输交互函数未测试 --- keil/include/components/app/src/uci_tl_task.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keil/include/components/app/src/uci_tl_task.c b/keil/include/components/app/src/uci_tl_task.c index 0db4d26..684cb6d 100644 --- a/keil/include/components/app/src/uci_tl_task.c +++ b/keil/include/components/app/src/uci_tl_task.c @@ -93,7 +93,7 @@ { p->msg_length = len; memcpy(p->msg, buf, len); - WsfQueueEnq(&uci_tl_dev->tl_up_queue, p); + WsfQueueEnq(&uci_tl_dev->tl_up_queue, p);//将rx下行缓存区的消息放入tx上行缓存区 } else { @@ -221,7 +221,7 @@ { if (uci_tl_dev->uci_tl_up_req != NULL) { - uci_tl_dev->uci_tl_up_req(); + uci_tl_dev->uci_tl_up_req();//非忙碌状态但是缓存区还没发完就通知上层继续发数据 } } } -- Gitblit v1.9.3