From 617cd07ca83e1c86986197d2ce823688bcb2c233 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald@gmail.com" Date: Sun, 26 Jan 2014 22:10:07 +0000 Subject: [PATCH] fix indicate/notify again --- example/libusb/ble_peripheral.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/example/libusb/ble_peripheral.c b/example/libusb/ble_peripheral.c index b812a3c8a..7287c476f 100644 --- a/example/libusb/ble_peripheral.c +++ b/example/libusb/ble_peripheral.c @@ -292,10 +292,10 @@ static int att_write_callback(uint16_t handle, uint16_t transaction_mode, uint16 printf("WRITE Callback, handle %04x, mode %u, offset %u\n", handle, transaction_mode, offset); switch(handle){ - case 0x0013: - case 0x0018: - case 0x0037: - case 0x003c: + case 0x0012: + case 0x0017: + case 0x0036: + case 0x003b: client_configuration = buffer[0]; client_configuration_handle = handle; printf("Client Configuration set to %u for handle %04x\n", client_configuration, handle);