diff --git a/src/winrtble/ble/device.rs b/src/winrtble/ble/device.rs index bd63b1ec..d3da241e 100644 --- a/src/winrtble/ble/device.rs +++ b/src/winrtble/ble/device.rs @@ -95,9 +95,7 @@ impl BLEDevice { pub async fn get_characteristics( service: &GattDeviceService, ) -> Result> { - let async_result = service - .GetCharacteristicsWithCacheModeAsync(BluetoothCacheMode::Uncached)? - .await?; + let async_result = service.GetCharacteristicsAsync()?.await?; let status = async_result.Status(); if status == Ok(GattCommunicationStatus::Success) { let results = async_result.Characteristics()?;