Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH] android/gatt: Add callback for test command
@ 2014-12-11 14:05 Mariusz Skamra
  2014-12-11 14:14 ` Szymon Janc
  0 siblings, 1 reply; 2+ messages in thread
From: Mariusz Skamra @ 2014-12-11 14:05 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Mariusz Skamra

It is needed in new gattrib. Without callback command won't be send.
---
 android/gatt.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/android/gatt.c b/android/gatt.c
index 8a81852..1b38a51 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -4053,6 +4053,12 @@ failed:
 				HAL_OP_GATT_CLIENT_SET_ADV_DATA, status);
 }
 
+static void test_command_result(guint8 status, const guint8 *pdu,
+					guint16 len, gpointer user_data)
+{
+	DBG("status: %d", status);
+}
+
 static uint8_t test_read_write(bdaddr_t *bdaddr, bt_uuid_t *uuid, uint16_t op,
 						uint16_t u2,uint16_t u3,
 						uint16_t u4, uint16_t u5)
@@ -4114,7 +4120,8 @@ static uint8_t test_read_write(bdaddr_t *bdaddr, bt_uuid_t *uuid, uint16_t op,
 	if (!length)
 		return HAL_STATUS_FAILED;
 
-	g_attrib_send(dev->attrib, 0, pdu, length, NULL, NULL, NULL);
+	g_attrib_send(dev->attrib, 0, pdu, length, test_command_result, NULL,
+									NULL);
 
 	return HAL_STATUS_SUCCESS;
 }
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] android/gatt: Add callback for test command
  2014-12-11 14:05 [PATCH] android/gatt: Add callback for test command Mariusz Skamra
@ 2014-12-11 14:14 ` Szymon Janc
  0 siblings, 0 replies; 2+ messages in thread
From: Szymon Janc @ 2014-12-11 14:14 UTC (permalink / raw)
  To: Mariusz Skamra; +Cc: linux-bluetooth

Hi Mariusz,

On Thursday 11 of December 2014 15:05:06 Mariusz Skamra wrote:
> It is needed in new gattrib. Without callback command won't be send.
> ---
>  android/gatt.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/android/gatt.c b/android/gatt.c
> index 8a81852..1b38a51 100644
> --- a/android/gatt.c
> +++ b/android/gatt.c
> @@ -4053,6 +4053,12 @@ failed:
>  				HAL_OP_GATT_CLIENT_SET_ADV_DATA, status);
>  }
>  
> +static void test_command_result(guint8 status, const guint8 *pdu,
> +					guint16 len, gpointer user_data)
> +{
> +	DBG("status: %d", status);
> +}
> +
>  static uint8_t test_read_write(bdaddr_t *bdaddr, bt_uuid_t *uuid, uint16_t op,
>  						uint16_t u2,uint16_t u3,
>  						uint16_t u4, uint16_t u5)
> @@ -4114,7 +4120,8 @@ static uint8_t test_read_write(bdaddr_t *bdaddr, bt_uuid_t *uuid, uint16_t op,
>  	if (!length)
>  		return HAL_STATUS_FAILED;
>  
> -	g_attrib_send(dev->attrib, 0, pdu, length, NULL, NULL, NULL);
> +	g_attrib_send(dev->attrib, 0, pdu, length, test_command_result, NULL,
> +									NULL);
>  
>  	return HAL_STATUS_SUCCESS;
>  }

Applied, thanks. 

-- 
Best regards, 
Szymon Janc

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-11 14:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-11 14:05 [PATCH] android/gatt: Add callback for test command Mariusz Skamra
2014-12-11 14:14 ` Szymon Janc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox