First commit 14/07/2025

This commit is contained in:
2025-07-14 17:09:40 +07:00
commit 8688286748
96 changed files with 2554 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrLockIndicator {
CrLockIndicator_Unknown (0x0000),
CrLockIndicator_Unlocked (CrLockIndicator_Unknown.getValue()+1),
CrLockIndicator_Locked (CrLockIndicator_Unknown.getValue()+2);
private final CrInt16u value;
CrLockIndicator(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}