From 030b2196f78975412648c96126151abf5832831f Mon Sep 17 00:00:00 2001 From: zhaohe Date: Mon, 2 Sep 2024 10:59:23 +0800 Subject: [PATCH] V101 --- README.md | 7 +++++-- usrc/service/remote_controler_event_processer.cpp | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 04045d3..7a81b84 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ ``` - +V101: +1. 重构加酸逻辑 +2. 预充管路,改成先回流再预冲 +3. 修改提示 "泵机" 为 "通道" +4. 修改预充管路,只充满选中管路 ``` @@ -14,7 +18,6 @@ TODO: 3. 转换比设置错误可能到只泵机不转 4. 设备在工作时,禁止退出首页 5. 设备在工作时,首页的任何操作都会停止设备。 - 6. ``` diff --git a/usrc/service/remote_controler_event_processer.cpp b/usrc/service/remote_controler_event_processer.cpp index cb7b657..ff6ff34 100644 --- a/usrc/service/remote_controler_event_processer.cpp +++ b/usrc/service/remote_controler_event_processer.cpp @@ -109,14 +109,14 @@ void RemoteControlerEventProcesser::processKeyEventFromRemoter(hand_acid_remoter } if (UIS->getNowPage() != pg_main) { - UIS->alert("请先切换到首页,在控制泵机"); + UIS->alert("请先切换到首页,在控制设备"); return; } if (keyEvent == hand_acid_remoter_kevent_add_liquid) { // if (!GSM->isHasPumpSelect()) { - UIS->alert("请至少选中一个泵机"); + UIS->alert("请至少选中一个通道"); return; }