From 1b5b70b03ccced400ca2cd806ab2704d4f7cef3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Kr=C3=B6ger?= Date: Wed, 26 Feb 2025 16:42:38 +0100 Subject: [PATCH] Remove invalid field from FindTypeValue response This incorrect field prevented the WinRT Bluetooth API to work with TrouBLE devices. Fixes #107. --- host/src/attribute_server.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/host/src/attribute_server.rs b/host/src/attribute_server.rs index 1c9fae53..3b005074 100644 --- a/host/src/attribute_server.rs +++ b/host/src/attribute_server.rs @@ -286,7 +286,6 @@ impl<'values, M: RawMutex, const MAX: usize> AttributeServer<'values, M, MAX> { } w.write(att.handle)?; w.write(att.last_handle_in_group)?; - w.write_ref(uuid)?; } } }