From 773b9953ad645b39a9efa8ab6d71dfc9d9e4e22e Mon Sep 17 00:00:00 2001 From: hxb <hxb@hdlchina.com.cn> Date: 星期四, 24 十月 2024 11:51:57 +0800 Subject: [PATCH] 补全了所有日志 --- HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java new file mode 100644 index 0000000..36b0c39 --- /dev/null +++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java @@ -0,0 +1,25 @@ +package com.hdl.linkpm.sdk.project.type; + +import androidx.annotation.IntDef; +import java.lang.annotation.Retention; + +import static java.lang.annotation.RetentionPolicy.SOURCE; + +/** + * Created by jlchen on 12/9/21. + * 璋冭瘯鐘舵�� Int 绫诲瀷 + */ +@Retention(SOURCE) +@IntDef({DebugStatusIntType.To_Be_Debugged, DebugStatusIntType.Debugging, DebugStatusIntType.WAIT_DELIVERED, DebugStatusIntType.Delivered, DebugStatusIntType.INITIAL_TATE}) +public @interface DebugStatusIntType { + //0锛氬緟璋冭瘯 + int To_Be_Debugged = 0; + //1锛氳皟璇曚腑 + int Debugging = 1; + //3锛氬緟浜や粯 + int WAIT_DELIVERED = 3; + //4锛氬凡浜や粯 + int Delivered = 4; + //5锛氬垵濮嬫�� + int INITIAL_TATE = 5; +} -- Gitblit v1.8.0