Skip to content
Snippets Groups Projects
Commit 306d2059 authored by Volker Richert's avatar Volker Richert
Browse files

fixes

parent 73b9d2dd
No related branches found
No related tags found
No related merge requests found
...@@ -628,7 +628,7 @@ public class MainActivity extends AppCompatActivity implements OnSharedPreferenc ...@@ -628,7 +628,7 @@ public class MainActivity extends AppCompatActivity implements OnSharedPreferenc
long nextPoll = pumpStatusData.getEventDate().getTime() + MedtronicCnlIntentService.POLL_GRACE_PERIOD_MS + MedtronicCnlIntentService.POLL_PERIOD_MS; long nextPoll = pumpStatusData.getEventDate().getTime() + MedtronicCnlIntentService.POLL_GRACE_PERIOD_MS + MedtronicCnlIntentService.POLL_PERIOD_MS;
startCgmService(nextPoll); startCgmService(nextPoll);
Log.d(TAG, "Lokal time " + new Date()); Log.d(TAG, "Local time " + new Date());
Log.d(TAG, "Last event was " + new Date(pumpStatusData.getEventDate().getTime())); Log.d(TAG, "Last event was " + new Date(pumpStatusData.getEventDate().getTime()));
Log.d(TAG, "Next Poll at " + new Date(nextPoll).toString()); Log.d(TAG, "Next Poll at " + new Date(nextPoll).toString());
......
...@@ -4,7 +4,6 @@ import android.app.AlarmManager; ...@@ -4,7 +4,6 @@ import android.app.AlarmManager;
import android.app.PendingIntent; import android.app.PendingIntent;
import android.content.Context; import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.os.SystemClock;
import android.support.v4.content.WakefulBroadcastReceiver; import android.support.v4.content.WakefulBroadcastReceiver;
import android.util.Log; import android.util.Log;
......
...@@ -244,7 +244,7 @@ public class MedtronicCnlIntentService extends IntentService { ...@@ -244,7 +244,7 @@ public class MedtronicCnlIntentService extends IntentService {
Log.e(TAG, "Unexpected Message", e); Log.e(TAG, "Unexpected Message", e);
sendStatus("Communication Error: " + e.getMessage()); sendStatus("Communication Error: " + e.getMessage());
} finally { } finally {
// FIXME: 05.11.2016 has the close to be here? //TODO : 05.11.2016 has the close to be here?
cnlReader.closeConnection(); cnlReader.closeConnection();
cnlReader.endPassthroughMode(); cnlReader.endPassthroughMode();
cnlReader.endControlMode(); cnlReader.endControlMode();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment