From 3feff89b32b14e562e79d7c07053dd764321accc Mon Sep 17 00:00:00 2001 From: veega2022 Date: Fri, 14 Mar 2025 20:41:11 +0800 Subject: [PATCH] hikptool: Update the tool version number to 1.1.4 Update the tool version number to 1.1.4 Signed-off-by: veega2022 --- tool_lib/tool_lib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool_lib/tool_lib.h b/tool_lib/tool_lib.h index 24b1fbb..d4493d7 100644 --- a/tool_lib/tool_lib.h +++ b/tool_lib/tool_lib.h @@ -18,7 +18,7 @@ #define TOOL_NAME "hikptool" -#define TOOL_VER "1.1.3" +#define TOOL_VER "1.1.4" #define HI_GET_BITFIELD(value, start, mask) (((value) >> (start)) & (mask)) #define HI_SET_FIELD(origin, shift, val) ((origin) |= (val) << (shift)) -- 2.45.0.windows.1