From 6a571cd63eab0a5b8e6496964d6e3916b793b9bf Mon Sep 17 00:00:00 2001 From: veega2022 Date: Fri, 20 Oct 2023 21:30:31 +0800 Subject: [PATCH] hikptool: Update the tool version number to 1.1.0 Update the tool version number to 1.1.0, the first SP3 release version 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 6548b57..14b3db5 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.0.16" +#define TOOL_VER "1.1.0" #define HI_GET_BITFIELD(value, start, mask) (((value) >> (start)) & (mask)) #define HI_SET_FIELD(origin, shift, val) ((origin) |= (val) << (shift)) -- 2.38.1.windows.1