altosui: Output recorded clock tick in CSV files
[fw/altos] / altosui / AltosFlightReader.java
index f665bda8e4419270aafd61b40e8b0cb07b56c22f..3ddf171d3b7788286701de65235c9caa90c6fb3f 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,9 +33,17 @@ 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 { }
+
+       boolean supports_telemetry(int telemetry) { return false; }
+
+       File backing_file() { return null; }
 }