feat: Remove Bluetooth RSSI feature (#3504)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-10-20 08:17:34 -05:00 committed by GitHub
parent ead69c7085
commit 894da7a02a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 0 additions and 83 deletions

View file

@ -49,15 +49,6 @@ class ServiceRepository @Inject constructor() {
_connectionState.value = connectionState
}
// Current bluetooth link RSSI (dBm). Null if not connected or not a bluetooth interface.
private val _bluetoothRssi = MutableStateFlow<Int?>(null)
val bluetoothRssi: StateFlow<Int?>
get() = _bluetoothRssi
fun setBluetoothRssi(rssi: Int?) {
_bluetoothRssi.value = rssi
}
private val _clientNotification = MutableStateFlow<MeshProtos.ClientNotification?>(null)
val clientNotification: StateFlow<MeshProtos.ClientNotification?>
get() = _clientNotification