Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCHv2 00/23] Add GATT Client Messages
@ 2014-02-26  8:40 Jakub Tyszkowski
  2014-02-26  8:40 ` [PATCHv2 01/23] android/hal-gatt-api: Add missing opcodes in GATT Service Jakub Tyszkowski
                   ` (23 more replies)
  0 siblings, 24 replies; 29+ messages in thread
From: Jakub Tyszkowski @ 2014-02-26  8:40 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Jakub Tyszkowski

This patchset adds GATT's Client part of ipc messages data.

v2 changes:
  * moved msg structs and opcodes up to message opcodes section of hal-msg.h
  * fixed typo and renamed few struct members to better match those in HAL hdrs
  * corrected tlv field types
  * [PATCHES 14-23/23] added opcodes and structs for the rest of Client messages

Regards,
Jakub Tyszkowski (23):
  android/hal-gatt-api: Add missing opcodes in GATT Service
  android/hal-gatt-api: Add Client Register
  android/hal-gatt-api: Add Client Unregister
  android/hal-gatt-api: Add Client Scan
  android/hal-gatt-api: Add Client Connect Remote
  android/hal-gatt-api: Add Client Disconnect Remote
  android/hal-gatt-api: Add Client Listen
  android/hal-gatt-api: Add Client Refresh Remote Cache
  android/hal-gatt-api: Add Client Search Service
  android/hal-gatt-api: Add Client Get Included Service
  android/hal-gatt-api: Add Client Get Characteristic
  android/hal-gatt-api: Add Client Get Descriptor
  android/hal-gatt-api: Add Client Read Characteristic
  android/hal-gatt-api: Add Client Write Characteristic
  android/hal-gatt-api: Add Client Read Descriptor
  android/hal-gatt-api: Add Client Write Descriptor
  android/hal-gatt-api: Add Client Execute Write
  android/hal-gatt-api: Add Client Register for Notification
  android/hal-gatt-api: Add Client Deregister for Notification
  android/hal-gatt-api: Add Client Read Remote RSSI
  android/hal-gatt-api: Add Client Get Device Type
  android/hal-gatt-api: Add Client Set Advertising Data
  android/hal-gatt-api: Add Client Test Command

 android/hal-ipc-api.txt | 324 +++++++++++++++++++++++++++++++++++++++++-------
 android/hal-msg.h       | 186 +++++++++++++++++++++++++++
 2 files changed, 466 insertions(+), 44 deletions(-)

--
1.9.0


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

end of thread, other threads:[~2014-02-27 21:15 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-26  8:40 [PATCHv2 00/23] Add GATT Client Messages Jakub Tyszkowski
2014-02-26  8:40 ` [PATCHv2 01/23] android/hal-gatt-api: Add missing opcodes in GATT Service Jakub Tyszkowski
2014-02-26  8:51   ` Marcel Holtmann
2014-02-26 11:34     ` Andrzej Kaczmarek
2014-02-27 11:23       ` Szymon Janc
2014-02-26  8:41 ` [PATCHv2 02/23] android/hal-gatt-api: Add Client Register Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 03/23] android/hal-gatt-api: Add Client Unregister Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 04/23] android/hal-gatt-api: Add Client Scan Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 05/23] android/hal-gatt-api: Add Client Connect Remote Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 06/23] android/hal-gatt-api: Add Client Disconnect Remote Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 07/23] android/hal-gatt-api: Add Client Listen Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 08/23] android/hal-gatt-api: Add Client Refresh Remote Cache Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 09/23] android/hal-gatt-api: Add Client Search Service Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 10/23] android/hal-gatt-api: Add Client Get Included Service Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 11/23] android/hal-gatt-api: Add Client Get Characteristic Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 12/23] android/hal-gatt-api: Add Client Get Descriptor Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 13/23] android/hal-gatt-api: Add Client Read Characteristic Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 14/23] android/hal-gatt-api: Add Client Write Characteristic Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 15/23] android/hal-gatt-api: Add Client Read Descriptor Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 16/23] android/hal-gatt-api: Add Client Write Descriptor Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 17/23] android/hal-gatt-api: Add Client Execute Write Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 18/23] android/hal-gatt-api: Add Client Register for Notification Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 19/23] android/hal-gatt-api: Add Client Deregister " Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 20/23] android/hal-gatt-api: Add Client Read Remote RSSI Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 21/23] android/hal-gatt-api: Add Client Get Device Type Jakub Tyszkowski
2014-02-27 14:43   ` [PATCH] " Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 22/23] android/hal-gatt-api: Add Client Set Advertising Data Jakub Tyszkowski
2014-02-26  8:41 ` [PATCHv2 23/23] android/hal-gatt-api: Add Client Test Command Jakub Tyszkowski
2014-02-27 21:15 ` [PATCHv2 00/23] Add GATT Client Messages Szymon Janc

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