commit 25/07/2025

This commit is contained in:
2025-07-25 10:20:57 +07:00
parent 5045c40814
commit 59bda34f7c
35 changed files with 470 additions and 0 deletions

View File

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