From 04325a33b2149dc484f2d7ed627a2455650a05fb Mon Sep 17 00:00:00 2001 From: Anthony <107735070+KingRocco21@users.noreply.github.com> Date: Fri, 31 Jul 2026 07:16:35 +0000 Subject: [PATCH] Remove illegal CCCD descriptor The softdevice returns Forbidden if you attempt to add this descriptor. --- examples/src/bin/ble_keyboard_peripheral_builder_macro.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/src/bin/ble_keyboard_peripheral_builder_macro.rs b/examples/src/bin/ble_keyboard_peripheral_builder_macro.rs index e348446..7b2d9a7 100644 --- a/examples/src/bin/ble_keyboard_peripheral_builder_macro.rs +++ b/examples/src/bin/ble_keyboard_peripheral_builder_macro.rs @@ -273,8 +273,7 @@ pub struct HidService { write, notify, value = "[0u8, 1u8]", - descriptor(uuid = "2908", security = "justworks", value = "[0, 1]"), - descriptor(uuid = "2902", security = "justworks", value = "[0, 1]") + descriptor(uuid = "2908", security = "justworks", value = "[0, 1]") )] pub input_report: [u8; 8],