X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=altoslib%2FAltosTelemetryFile.java;h=15344b8dba5f06464f482b13aee3817fc3125990;hb=HEAD;hp=052b0fbad247c1af1b52b6134a9eeb839346dfec;hpb=528fdc4e03466430c8d81fc78c90d3c9e8465ca7;p=fw%2Faltos diff --git a/altoslib/AltosTelemetryFile.java b/altoslib/AltosTelemetryFile.java index 052b0fba..5ba32518 100644 --- a/altoslib/AltosTelemetryFile.java +++ b/altoslib/AltosTelemetryFile.java @@ -49,6 +49,7 @@ class AltosTelemetryNullListener extends AltosDataListener { public void set_igniter_voltage(double[] voltage) { } public void set_pyro_fired(int pyro_mask) { } public void set_companion(AltosCompanion companion) { } + public void set_motor_pressure(double motor_pressure) { } public boolean cal_data_complete() { /* All telemetry packets */ @@ -137,6 +138,10 @@ public class AltosTelemetryFile implements AltosRecordSet { listener.finish(); } + public AltosConfigData config_data() { + return null; + } + public AltosTelemetryFile(FileInputStream input) throws IOException { telems = new AltosTelemetryIterable(input); }