From 0df22b4186001c41f6309757ff1198b25918bded Mon Sep 17 00:00:00 2001 From: YuanHongbin <975559679@qq.com> Date: Thu, 23 Jul 2026 09:34:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20para=E6=8C=87=E4=BB=A4=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=BF=80=E5=85=89=E7=8A=B6=E6=80=81=E4=B8=8E=E5=AE=9A?= =?UTF-8?q?=E6=97=B6=E5=88=86=E9=92=9F=E6=95=B0=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Module/LaserTracing_Debug/UartDebug.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Module/LaserTracing_Debug/UartDebug.c b/Module/LaserTracing_Debug/UartDebug.c index d066718..c7cfa99 100644 --- a/Module/LaserTracing_Debug/UartDebug.c +++ b/Module/LaserTracing_Debug/UartDebug.c @@ -214,6 +214,8 @@ static void DebugCmdGetPara(int argc, char *argv[]) DBG_LOG("Lora: ch %d, rp %d, fc %d\r\n", App.Para.Lora.ucChannel, App.Para.Lora.RegPreamble, App.Para.Lora.FreqCent); DBG_LOG("LpCfg: CI:%dsec, RI:%dmin, EI:%dmin, ET:%dmin\r\n", App.Para.Layout.CollectTime*30, App.Para.Layout.ReportInterval/2, App.Para.Layout.ERInterval/2, App.Para.Layout.ERTime/2); + DBG_LOG("Laser: %s, AutoOff: %dmin\r\n", + (SGCP.LaserOnOff == true) ? "ON" : "OFF", SGCP.LaserTimerMinutes); struct tm *stime; uint32_t dwStamp = TimeTs(); stime = localtime(&dwStamp);