mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2026-01-15 20:54:27 +01:00
Remove unused file
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user