First commit 15/07/2025

This commit is contained in:
2025-07-15 15:01:48 +07:00
parent 4222ceb824
commit b63c0f1d65
51 changed files with 939 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrTouchOperation {
CrTouchOperation_Off (0x01),
CrTouchOperation_On (CrTouchOperation_Off.getValue()+1),
CrTouchOperation_PlaybackOnly (CrTouchOperation_Off.getValue()+2);
private final CrInt8u value;
CrTouchOperation(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}