altos: Correct AO_CONFIG_MINOR from 6 to 7
[fw/altos] / altosui / AltosFlightReader.java
index 3d59de9a82c22ef4f4354a812651df469d2250dd..47df375d67dc9bb62ad09e132971d652fde486b2 100644 (file)
@@ -20,6 +20,7 @@ package altosui;
 import java.lang.*;
 import java.text.*;
 import java.io.*;
+import java.util.concurrent.*;
 
 public class AltosFlightReader {
        String name;
@@ -32,7 +33,15 @@ public class AltosFlightReader {
 
        void close(boolean interrupted) { }
 
-       void set_channel(int channel) { }
+       void set_frequency(double frequency) throws InterruptedException, TimeoutException { }
+
+       void save_frequency() { }
+
+       void set_telemetry(int telemetry) { }
+
+       void save_telemetry() { }
 
        void update(AltosState state) throws InterruptedException { }
+
+       File backing_file() { return null; }
 }