Eopatch: fix pairing

This commit is contained in:
Milos Kozak 2022-11-11 08:31:19 +01:00
parent 7ae9ad1105
commit 9d14db71c7
3 changed files with 69 additions and 75 deletions

View file

@ -82,7 +82,8 @@ public class PatchManager implements IPatchManager {
private Disposable mConnectingDisposable = null;
@Inject
public PatchManager() {}
public PatchManager() {
}
@Inject
void onInit() {
@ -137,8 +138,8 @@ public class PatchManager implements IPatchManager {
setConnection();
}
private void stopObservingConnection(){
if(mConnectingDisposable != null) {
private void stopObservingConnection() {
if (mConnectingDisposable != null) {
mConnectingDisposable.dispose();
mConnectingDisposable = null;
}
@ -216,7 +217,7 @@ public class PatchManager implements IPatchManager {
@Override
public void setConnection() {
if(pm.getPatchConfig().hasMacAddress()){
if (pm.getPatchConfig().hasMacAddress()) {
patchManager.updateMacAddress(pm.getPatchConfig().getMacAddress(), false);
}
}
@ -256,24 +257,26 @@ public class PatchManager implements IPatchManager {
public Single<Boolean> patchActivation(long timeout) {
return patchManager.patchActivation(timeout)
.doOnSuccess(success -> {
// if (success) {
// pumpSync.insertTherapyEventIfNewWithTimestamp(
// getPatchConfig().getPatchWakeupTimestamp(),
// DetailedBolusInfo.EventType.CANNULA_CHANGE,
// null,
// null,
// PumpType.EOFLOW_EOPATCH2,
// getPatchConfig().getPatchSerialNumber()
// );
// pumpSync.insertTherapyEventIfNewWithTimestamp(
// getPatchConfig().getPatchWakeupTimestamp(),
// DetailedBolusInfo.EventType.INSULIN_CHANGE,
// null,
// null,
// PumpType.EOFLOW_EOPATCH2,
// getPatchConfig().getPatchSerialNumber()
// );
// }
if (success) {
pumpSync.connectNewPump(true);
Thread.sleep(1000);
pumpSync.insertTherapyEventIfNewWithTimestamp(
System.currentTimeMillis(),
DetailedBolusInfo.EventType.CANNULA_CHANGE,
null,
null,
PumpType.EOFLOW_EOPATCH2,
getPatchConfig().getPatchSerialNumber()
);
pumpSync.insertTherapyEventIfNewWithTimestamp(
System.currentTimeMillis(),
DetailedBolusInfo.EventType.INSULIN_CHANGE,
null,
null,
PumpType.EOFLOW_EOPATCH2,
getPatchConfig().getPatchSerialNumber()
);
}
});
}
@ -328,7 +331,7 @@ public class PatchManager implements IPatchManager {
}
public Single<ComboBolusStopResponse> stopComboBolus(){
public Single<ComboBolusStopResponse> stopComboBolus() {
return patchManager.stopComboBolus();
}
@ -363,7 +366,7 @@ public class PatchManager implements IPatchManager {
public void addBolusToHistory(DetailedBolusInfo originalDetailedBolusInfo) {
DetailedBolusInfo detailedBolusInfo = originalDetailedBolusInfo.copy();
if(detailedBolusInfo.insulin > 0) {
if (detailedBolusInfo.insulin > 0) {
pumpSync.syncBolusWithPumpId(
detailedBolusInfo.timestamp,
detailedBolusInfo.insulin,
@ -387,7 +390,7 @@ public class PatchManager implements IPatchManager {
@Override
public void changeBuzzerSetting() {
boolean buzzer = sp.getBoolean(SettingKeys.Companion.getBUZZER_REMINDERS(), false);
if(pm.getPatchConfig().getInfoReminder() != buzzer) {
if (pm.getPatchConfig().getInfoReminder() != buzzer) {
if (isActivated()) {
mCompositeDisposable.add(infoReminderSet(buzzer)
.observeOn(aapsSchedulers.getMain())
@ -407,12 +410,12 @@ public class PatchManager implements IPatchManager {
int doseUnit = sp.getInt(SettingKeys.Companion.getLOW_RESERVOIR_REMINDERS(), 0);
int hours = sp.getInt(SettingKeys.Companion.getEXPIRATION_REMINDERS(), 0);
PatchConfig pc = pm.getPatchConfig();
if(pc.getLowReservoirAlertAmount() != doseUnit || pc.getPatchExpireAlertTime() != hours) {
if (pc.getLowReservoirAlertAmount() != doseUnit || pc.getPatchExpireAlertTime() != hours) {
if (isActivated()) {
mCompositeDisposable.add(setLowReservoir(doseUnit, hours)
.observeOn(aapsSchedulers.getMain())
.doOnSubscribe(disposable -> {
if(pc.getPatchExpireAlertTime() != hours){
if (pc.getPatchExpireAlertTime() != hours) {
Maybe.just(AlarmCode.B000)
.flatMap(alarmCode -> alarmRegistry.remove(alarmCode))
.flatMap(alarmCode -> alarmRegistry.add(alarmCode, (pc.getExpireTimestamp() - System.currentTimeMillis() - TimeUnit.HOURS.toMillis(hours)), false))
@ -433,8 +436,8 @@ public class PatchManager implements IPatchManager {
}
@Override
public void checkActivationProcess(){
if(getPatchConfig().getLifecycleEvent().isSubStepRunning()
public void checkActivationProcess() {
if (getPatchConfig().getLifecycleEvent().isSubStepRunning()
&& !pm.getAlarms().isOccurring(AlarmCode.A005)
&& !pm.getAlarms().isOccurring(AlarmCode.A020)) {
rxAction.runOnMainThread(() -> rxBus.send(new EventPatchActivationNotComplete()));

View file

@ -382,14 +382,6 @@ public class PatchManagerImpl {
if (success) {
TaskBase.enqueue(TaskFunc.LOW_RESERVOIR);
TaskBase.enqueue(TaskFunc.INFO_REMINDER);
pumpSync.connectNewPump(true);
pumpSync.insertTherapyEventIfNewWithTimestamp(
System.currentTimeMillis(),
DetailedBolusInfo.EventType.INSULIN_CHANGE,
null,
null,
PumpType.EOFLOW_EOPATCH2,
null);
}
});
}

View file

@ -278,7 +278,6 @@ class EopatchActivity : EoBaseActivity<ActivityEopatchBinding>() {
this@EopatchActivity.finish()
}
start()
return
}
}