altosdroid: Clean up imports in TelemetryService
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / TelemetryService.java
index 95b655c2f7d9bfaeca1ea59ef4d551659fe4b1a3..7d0f7a70a79eb71e2c9b84fff15411762f11d90c 100644 (file)
@@ -29,12 +29,15 @@ import android.widget.Toast;
 
 // Need the following import to get access to the app resources, since this
 // class is in a sub-package.
-import org.altusmetrum.AltosDroid.R;
-
+//import org.altusmetrum.AltosDroid.R;
 
+import org.altusmetrum.AltosLib.*;
 
 public class TelemetryService extends Service {
 
+       private static final String TAG = "TelemetryService";
+       private static final boolean D = true;
+
     /**
      * Class for clients to access.  Because we know this service always
      * runs in the same process as its clients, we don't need to deal with
@@ -50,6 +53,13 @@ public class TelemetryService extends Service {
        private int NOTIFICATION = R.string.telemetry_service_label;
        private NotificationManager mNM;
 
+
+       // Name of the connected device
+       private String mConnectedDeviceName = null;
+       private AltosBluetooth mAltosBluetooth = null;
+
+       LinkedBlockingQueue<AltosLine> telem;
+
        @Override
        public void onCreate() {
                // Create a reference to the NotificationManager so that we can update our notifcation text later