From f7c6c0104fcb3dd42b59bca42d60f4d4978f71d9 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 15 Jun 2023 08:23:52 +0200 Subject: [PATCH] gatt-service/hids: fix properties for output and feature reports --- src/ble/gatt-service/hids.gatt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ble/gatt-service/hids.gatt b/src/ble/gatt-service/hids.gatt index f661d2efe..49b9dbcc1 100644 --- a/src/ble/gatt-service/hids.gatt +++ b/src/ble/gatt-service/hids.gatt @@ -9,11 +9,11 @@ CHARACTERISTIC, ORG_BLUETOOTH_CHARACTERISTIC_REPORT, DYNAMIC | READ | WRITE | NO // fixed report id = 1, type = Input (1) REPORT_REFERENCE, READ, 1, 1 -CHARACTERISTIC, ORG_BLUETOOTH_CHARACTERISTIC_REPORT, DYNAMIC | READ | WRITE | NOTIFY | ENCRYPTION_KEY_SIZE_16, +CHARACTERISTIC, ORG_BLUETOOTH_CHARACTERISTIC_REPORT, DYNAMIC | READ | WRITE | WRITE_WITHOUT_RESPONSE | NOTIFY | ENCRYPTION_KEY_SIZE_16, // fixed report id = 2, type = Output (2) REPORT_REFERENCE, READ, 2, 2 -CHARACTERISTIC, ORG_BLUETOOTH_CHARACTERISTIC_REPORT, DYNAMIC | READ | WRITE | NOTIFY | ENCRYPTION_KEY_SIZE_16, +CHARACTERISTIC, ORG_BLUETOOTH_CHARACTERISTIC_REPORT, DYNAMIC | READ | WRITE | ENCRYPTION_KEY_SIZE_16, // fixed report id = 3, type = Feature (3) REPORT_REFERENCE, READ, 3, 3