commit 24/07/2025

This commit is contained in:
2025-07-24 11:54:45 +07:00
parent c2f7106f70
commit 5045c40814
39 changed files with 630 additions and 0 deletions

View File

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