dash/ble: ktlintFormat
This commit is contained in:
parent
e7a9e24093
commit
7dd8fc1bf6
|
@ -37,7 +37,7 @@ data class Id(val address: ByteArray) {
|
|||
return Id(ByteBuffer.allocate(4).putInt(v).array())
|
||||
}
|
||||
fun fromLong(v: Long): Id {
|
||||
return Id(ByteBuffer.allocate(8).putLong(v).array().copyOfRange(4,8))
|
||||
return Id(ByteBuffer.allocate(8).putLong(v).array().copyOfRange(4, 8))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ import info.nightscout.androidaps.logging.AAPSLogger
|
|||
import info.nightscout.androidaps.logging.LTag
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.BuildConfig
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.Id
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.OmnipodDashBleManagerImpl
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.exceptions.MessageIOException
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.message.MessageIO
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.message.MessagePacket
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.pair
|
||||
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.Id
|
||||
import info.nightscout.androidaps.utils.extensions.toHex
|
||||
|
||||
data class PairResult(val ltk: ByteArray, val msgSeq: Byte) {
|
||||
|
|
|
@ -4,7 +4,6 @@ import info.nightscout.androidaps.logging.AAPSLogger
|
|||
import info.nightscout.androidaps.logging.LTag
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.exceptions.MessageIOException
|
||||
import info.nightscout.androidaps.utils.extensions.toHex
|
||||
import okio.ByteString.Companion.toByteString
|
||||
import java.nio.ByteBuffer
|
||||
|
||||
enum class EapCode(val code: Byte) {
|
||||
|
|
|
@ -27,8 +27,8 @@ class SessionEstablisher(
|
|||
private val milenage = Milenage(aapsLogger, ltk, eapSqn)
|
||||
|
||||
init {
|
||||
require(eapSqn.size == 6) {"EAP-SQN has to be 6 bytes long"}
|
||||
require(ltk.size == 16) {"LTK has to be 16 bytes long"}
|
||||
require(eapSqn.size == 6) { "EAP-SQN has to be 6 bytes long" }
|
||||
require(ltk.size == 16) { "LTK has to be 16 bytes long" }
|
||||
|
||||
aapsLogger.debug(LTag.PUMPBTCOMM, "Starting EAP-AKA")
|
||||
val random = SecureRandom()
|
||||
|
|
|
@ -48,7 +48,7 @@ interface OmnipodDashPodStateManager {
|
|||
val basalProgram: BasalProgram?
|
||||
|
||||
fun increaseMessageSequenceNumber()
|
||||
fun increaseEapAkaSequenceNumber():ByteArray
|
||||
fun increaseEapAkaSequenceNumber(): ByteArray
|
||||
fun commitEapAkaSequenceNumber()
|
||||
fun updateFromDefaultStatusResponse(response: DefaultStatusResponse)
|
||||
fun updateFromVersionResponse(response: VersionResponse)
|
||||
|
|
|
@ -165,7 +165,7 @@ class OmnipodDashPodStateManagerImpl @Inject constructor(
|
|||
store()
|
||||
}
|
||||
|
||||
override fun increaseEapAkaSequenceNumber():ByteArray {
|
||||
override fun increaseEapAkaSequenceNumber(): ByteArray {
|
||||
podState.eapAkaSequenceNumber++
|
||||
return ByteBuffer.allocate(8)
|
||||
.putLong(podState.eapAkaSequenceNumber)
|
||||
|
|
|
@ -325,7 +325,6 @@ class OmnipodDashOverviewFragment : DaggerFragment() {
|
|||
}
|
||||
|
||||
podInfoBinding.podActiveAlerts.text = PLACEHOLDER
|
||||
|
||||
}
|
||||
|
||||
if (errors.size == 0) {
|
||||
|
|
Loading…
Reference in a new issue