Merge branch 'dev' into medtronic_andy

This commit is contained in:
Andy Rozman 2019-05-03 21:35:18 +01:00
commit b5da57e20f
6 changed files with 34 additions and 23 deletions

View file

@ -94,7 +94,7 @@ public class PreferencesActivity extends PreferenceActivity implements SharedPre
} else if (editTextPref.getText() != null) { } else if (editTextPref.getText() != null) {
((EditTextPreference) pref).setDialogMessage(editTextPref.getDialogMessage()); ((EditTextPreference) pref).setDialogMessage(editTextPref.getDialogMessage());
pref.setSummary(editTextPref.getText()); pref.setSummary(editTextPref.getText());
} else if (pref.getKey().contains("smscommunicator_allowednumbers") && TextUtils.isEmpty(editTextPref.getText().trim())) { } else if (pref.getKey().contains("smscommunicator_allowednumbers") && (editTextPref.getText() == null || TextUtils.isEmpty(editTextPref.getText().trim()))) {
pref.setSummary(MainApp.gs(R.string.smscommunicator_allowednumbers_summary)); pref.setSummary(MainApp.gs(R.string.smscommunicator_allowednumbers_summary));
} }
} }

View file

@ -160,6 +160,7 @@ public class InsightPairingActivity extends AppCompatActivity implements Insight
private void startBLScan() { private void startBLScan() {
if (!scanning) { if (!scanning) {
BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (bluetoothAdapter != null) {
if (!bluetoothAdapter.isEnabled()) bluetoothAdapter.enable(); if (!bluetoothAdapter.isEnabled()) bluetoothAdapter.enable();
IntentFilter intentFilter = new IntentFilter(); IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED); intentFilter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
@ -169,11 +170,15 @@ public class InsightPairingActivity extends AppCompatActivity implements Insight
scanning = true; scanning = true;
} }
} }
}
private void stopBLScan() { private void stopBLScan() {
if (scanning) { if (scanning) {
unregisterReceiver(broadcastReceiver); unregisterReceiver(broadcastReceiver);
BluetoothAdapter.getDefaultAdapter().cancelDiscovery(); BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (bluetoothAdapter != null) {
bluetoothAdapter.cancelDiscovery();
}
scanning = false; scanning = false;
} }
} }

View file

@ -190,8 +190,9 @@ public class TreatmentService extends OrmLiteBaseService<DatabaseHelper> {
} }
// prepare task for execution in 1 sec // prepare task for execution in 1 sec
// cancel waiting task to prevent sending multiple posts // cancel waiting task to prevent sending multiple posts
if (callback.getPost() != null) ScheduledFuture<?> scheduledFuture = callback.getPost();
callback.getPost().cancel(false); if (scheduledFuture != null)
scheduledFuture.cancel(false);
Runnable task = new PostRunnable(); Runnable task = new PostRunnable();
final int sec = 1; final int sec = 1;
callback.setPost(eventWorker.schedule(task, sec, TimeUnit.SECONDS)); callback.setPost(eventWorker.schedule(task, sec, TimeUnit.SECONDS));

View file

@ -12,6 +12,8 @@ import org.slf4j.LoggerFactory;
import java.util.LinkedList; import java.util.LinkedList;
import javax.annotation.Nullable;
import info.nightscout.androidaps.MainApp; import info.nightscout.androidaps.MainApp;
import info.nightscout.androidaps.R; import info.nightscout.androidaps.R;
import info.nightscout.androidaps.data.DetailedBolusInfo; import info.nightscout.androidaps.data.DetailedBolusInfo;
@ -143,11 +145,11 @@ public class CommandQueue {
return queue.size(); return queue.size();
} }
public Command performing() { Command performing() {
return performing; return performing;
} }
public void resetPerforming() { void resetPerforming() {
performing = null; performing = null;
} }

View file

@ -141,6 +141,7 @@ public class QueueThread extends Thread {
// Pickup 1st command and set performing variable // Pickup 1st command and set performing variable
if (queue.size() > 0) { if (queue.size() > 0) {
queue.pickup(); queue.pickup();
if (queue.performing() != null) {
if (L.isEnabled(L.PUMPQUEUE)) if (L.isEnabled(L.PUMPQUEUE))
log.debug("performing " + queue.performing().status()); log.debug("performing " + queue.performing().status());
MainApp.bus().post(new EventQueueChanged()); MainApp.bus().post(new EventQueueChanged());
@ -152,6 +153,7 @@ public class QueueThread extends Thread {
continue; continue;
} }
} }
}
if (queue.size() == 0 && queue.performing() == null) { if (queue.size() == 0 && queue.performing() == null) {
long secondsFromLastCommand = (System.currentTimeMillis() - lastCommandTime) / 1000; long secondsFromLastCommand = (System.currentTimeMillis() - lastCommandTime) / 1000;
@ -173,7 +175,7 @@ public class QueueThread extends Thread {
} }
} }
} finally { } finally {
if (mWakeLock != null) if (mWakeLock != null && mWakeLock.isHeld())
mWakeLock.release(); mWakeLock.release();
if (L.isEnabled(L.PUMPQUEUE)) if (L.isEnabled(L.PUMPQUEUE))
log.debug("thread end"); log.debug("thread end");

View file

@ -150,6 +150,7 @@ public class AAPSMocker {
when(MainApp.gs(R.string.pumpsuspended)).thenReturn("Pump suspended"); when(MainApp.gs(R.string.pumpsuspended)).thenReturn("Pump suspended");
when(MainApp.gs(R.string.cob)).thenReturn("COB"); when(MainApp.gs(R.string.cob)).thenReturn("COB");
when(MainApp.gs(R.string.value_unavailable_short)).thenReturn("n/a"); when(MainApp.gs(R.string.value_unavailable_short)).thenReturn("n/a");
when(MainApp.gs(R.string.pumpNotInitialized)).thenReturn("Pump not initialized!");
} }
public static MainApp mockMainApp() { public static MainApp mockMainApp() {