From 04b95840e106182266f71a549b85bcfff083deb1 Mon Sep 17 00:00:00 2001 From: chen <15335560115@163.com> Date: 星期五, 23 五月 2025 18:07: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