From 2df7b63f0312f6d184118ff64bb249d73882b293 Mon Sep 17 00:00:00 2001 From: kkk <18436010132@163.com> Date: Mon, 31 Jul 2023 12:51:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=93=E5=BA=93=E5=90=8C=E6=AD=A5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app_test/test_modbus_tcp/test_modbus_tcp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/APP_Framework/Applications/app_test/test_modbus_tcp/test_modbus_tcp.c b/APP_Framework/Applications/app_test/test_modbus_tcp/test_modbus_tcp.c index e2376e9e0..b0565511d 100644 --- a/APP_Framework/Applications/app_test/test_modbus_tcp/test_modbus_tcp.c +++ b/APP_Framework/Applications/app_test/test_modbus_tcp/test_modbus_tcp.c @@ -147,7 +147,7 @@ static void *ModbusTcpServer(void *arg) MbMemoryFree(&mbm);//释放存储区 } -void Test_ModbusTcpServer(int argc, char *argv[]) +void TestModbusTcpServer(int argc, char *argv[]) { if(argc >= 2) { lw_print("lw: [%s] target ip %s\n", __func__, argv[1]); @@ -168,7 +168,7 @@ void Test_ModbusTcpServer(int argc, char *argv[]) ModbusTcpServer(NULL); } -PRIV_SHELL_CMD_FUNCTION(Test_ModbusTcpServer, a modbusS test sample, PRIV_SHELL_CMD_MAIN_ATTR); +PRIV_SHELL_CMD_FUNCTION(TestModbusTcpServer, a modbusS test sample, PRIV_SHELL_CMD_MAIN_ATTR); static void *ModbusTcpClient(void *arg) { @@ -225,7 +225,7 @@ static void *ModbusTcpClient(void *arg) return NULL; } -void Test_ModbusTcpClient(int argc, char *argv[]) +void TestModbusTcpClient(int argc, char *argv[]) { if(argc >= 2) { lw_print("lw: [%s] target ip %s\n", __func__, argv[1]); @@ -244,5 +244,5 @@ void Test_ModbusTcpClient(int argc, char *argv[]) ModbusTcpClient(NULL); } -PRIV_SHELL_CMD_FUNCTION(Test_ModbusTcpClient, a modbustcpC test sample, PRIV_SHELL_CMD_MAIN_ATTR); +PRIV_SHELL_CMD_FUNCTION(TestModbusTcpClient, a modbustcpC test sample, PRIV_SHELL_CMD_MAIN_ATTR);