diff options
author | Keith Packard <keithp@keithp.com> | 2017-08-11 23:42:53 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-08-12 18:28:17 -0400 |
commit | 5de9496b103b495b7ff77c84e1047d207bc4259c (patch) | |
tree | f74f2bf436efc9513666cfa10eb997ad1fdbdad6 /altoslib/AltosConfigValues.java | |
parent | 43e2275250d9c91560a770942f3c06a8f74ed501 (diff) |
altosui: Initial accel calibration UIaccel-cal-ui
Almost working, needs further tweaking.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosConfigValues.java')
-rw-r--r-- | altoslib/AltosConfigValues.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/altoslib/AltosConfigValues.java b/altoslib/AltosConfigValues.java index 170b1112..cf9bd721 100644 --- a/altoslib/AltosConfigValues.java +++ b/altoslib/AltosConfigValues.java @@ -74,6 +74,12 @@ public interface AltosConfigValues { public abstract int pad_orientation(); + public abstract void set_accel_cal(int accel_cal_plus, int accel_cal_minus); + + public abstract int accel_cal_plus(); + + public abstract int accel_cal_minus(); + public abstract void set_pyros(AltosPyro[] new_pyros); public abstract AltosPyro[] pyros() throws AltosConfigDataException; |