commit 25/07/2025

This commit is contained in:
2025-07-25 11:12:52 +07:00
parent 59bda34f7c
commit 3009d4f547
62 changed files with 806 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrCinematicVlogSetting {
CrCinematicVlogSetting_Off(0x01),
CrCinematicVlogSetting_On(CrCinematicVlogSetting_Off.getValue() + 1);
private final CrInt8u value;
CrCinematicVlogSetting(int value) { this.value = new CrInt8u(value); }
public int getValue() { return value.intValue(); }
}