commit 24/07/2025

This commit is contained in:
2025-07-24 10:34:42 +07:00
parent b0ad8b5189
commit c2f7106f70
25 changed files with 416 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrCameraOperatingMode {
CrCameraOperatingMode_Record (0x01),
CrCameraOperatingMode_Playback (0x02);
private final CrInt8u value;
CrCameraOperatingMode(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}