analysis: full official-app reverse artifacts (jadx sources, ghidra libcxsdk decomp, authoritative protocol conclusions) + docs

This commit is contained in:
ZXCLI
2026-09-10 02:51:37 +08:00
parent 623d62b641
commit 4ba98f62cd
68 changed files with 69493 additions and 5 deletions
@@ -0,0 +1,46 @@
package cn.com.magnity.magnitycx.sdk;
/* loaded from: classes.dex */
public class BasePara2 implements Cloneable {
public float ATErrorSlope;
public int ATZeroErrorPoint;
public int baseLineAcc;
public int denoiseLevel;
public int enlargeRange;
public int ffcTriggerFrame;
public int ffcTriggerTemperature;
public short fpaTempFix;
public int laserPos;
public int reserved1;
public short reserved2;
public int reserved5;
public int reserved6;
public int shutterCloseSpeed;
public int shutterOpenSpeed;
public BasePara2() {
reset();
}
public void reset() {
this.baseLineAcc = 0;
this.denoiseLevel = 0;
this.reserved1 = 0;
this.reserved2 = (short) 0;
this.fpaTempFix = (short) 0;
this.shutterCloseSpeed = 0;
this.shutterOpenSpeed = 0;
this.ffcTriggerFrame = 0;
this.ffcTriggerTemperature = 0;
this.enlargeRange = 0;
this.laserPos = 0;
this.ATZeroErrorPoint = 0;
this.ATErrorSlope = 0.0f;
this.reserved5 = 0;
this.reserved6 = 0;
}
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}