From d9e1a1f52023dbf41209781f043a04139961f414 Mon Sep 17 00:00:00 2001 From: baomingde <2769302462@qq.com> Date: Thu, 30 Oct 2025 09:32:05 +0000 Subject: [PATCH] update inc/states.h. Fix the duplicate enumeration values in the enum_nodeState. Signed-off-by: baomingde <2769302462@qq.com> --- inc/states.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/states.h b/inc/states.h index 6615a3d..52e1b4f 100644 --- a/inc/states.h +++ b/inc/states.h @@ -40,7 +40,7 @@ enum enum_nodeState { Initialisation = 0x00, Disconnected = 0x01, Connecting = 0x02, - Preparing = 0x02, + Preparing = 0x03, Stopped = 0x04, Operational = 0x05, Pre_operational = 0x7F, -- Gitee