This commit is contained in:
Milos Kozak 2021-10-08 10:19:09 +02:00
parent c9e90193e7
commit df700da045
2 changed files with 0 additions and 11 deletions

View file

@ -398,14 +398,6 @@ class CommandQueue @Inject constructor(
callback?.result(PumpEnactResult(injector).success(true).enacted(false))?.run() callback?.result(PumpEnactResult(injector).success(true).enacted(false))?.run()
return false return false
} }
/* this is breaking setting of profile at all if not engineering mode
if (!buildHelper.isEngineeringModeOrRelease()) {
val notification = Notification(Notification.NOT_ENG_MODE_OR_RELEASE, resourceHelper.gs(R.string.not_eng_mode_or_release), Notification.URGENT)
rxBus.send(EventNewNotification(notification))
callback?.result(PumpEnactResult(injector).success(false).enacted(false).comment(R.string.not_eng_mode_or_release)))?.run()
return false
}
*/
// Compare with pump limits // Compare with pump limits
val basalValues = profile.getBasalValues() val basalValues = profile.getBasalValues()
for (basalValue in basalValues) { for (basalValue in basalValues) {

View file

@ -84,9 +84,6 @@ open class Notification {
const val UNSUPPORTED_FIRMWARE = 28 const val UNSUPPORTED_FIRMWARE = 28
const val MINIMAL_BASAL_VALUE_REPLACED = 29 const val MINIMAL_BASAL_VALUE_REPLACED = 29
const val BASAL_PROFILE_NOT_ALIGNED_TO_HOURS = 30 const val BASAL_PROFILE_NOT_ALIGNED_TO_HOURS = 30
const val ZERO_VALUE_IN_PROFILE = 31
const val PROFILE_SWITCH_MISSING = 32
@Suppress("unused") const val NOT_ENG_MODE_OR_RELEASE = 33
const val WRONG_PUMP_PASSWORD = 34 const val WRONG_PUMP_PASSWORD = 34
const val PERMISSION_STORAGE = 35 const val PERMISSION_STORAGE = 35
const val PERMISSION_LOCATION = 36 const val PERMISSION_LOCATION = 36