Remove unused file

This commit is contained in:
himalia416
2025-10-10 16:20:03 +02:00
committed by Himali Aryal
parent 8ab5a21a74
commit fa15e29cc9

View File

@@ -1,24 +0,0 @@
package no.nordicsemi.android.toolbox.profile.repository.channelSounding
enum class RangingSessionStartTechnology(val technology: Int) {
UWB(0),
BLE_CS(1),
WIFI_NAN_RTT(2),
BLE_RSSI(3), ;
override fun toString(): String {
return when (technology) {
UWB.technology -> "UWB"
BLE_CS.technology -> "BLE CS"
WIFI_NAN_RTT.technology -> "WIFI NAN RTT"
BLE_RSSI.technology -> "BLE RSSI"
else -> "Unknown technology"
}
}
companion object {
fun getTechnology(technology: Int): String {
return entries.firstOrNull { it.technology == technology }.toString()
}
}
}