From 40c8521a8b27b10fa69cf499241796136c5e87a1 Mon Sep 17 00:00:00 2001 From: cxh Date: Thu, 22 Jan 2026 15:54:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=89=93=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/serial_AT.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/serial_AT.cpp b/src/serial_AT.cpp index aa2a150..d2f164b 100644 --- a/src/serial_AT.cpp +++ b/src/serial_AT.cpp @@ -294,6 +294,8 @@ static void handle_serial_at_data(const std::string& data) line.erase(0, line.find_first_not_of(" \t\r\n")); line.erase(line.find_last_not_of(" \t\r\n") + 1); + LOG_INFO("[serial_at][RAW] " + line); + // IMEI:14~17 位纯数字 if (line.size() >= 14 && line.size() <= 17 && std::all_of(line.begin(), line.end(), ::isdigit)) {