All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/38] android/gatt: GATT server implementation
@ 2014-04-30  9:13 Lukasz Rymanowski
  2014-04-30  9:13 ` [PATCH v4 01/38] android/gatt: Rename listen_clients to listen_apps Lukasz Rymanowski
                   ` (39 more replies)
  0 siblings, 40 replies; 41+ messages in thread
From: Lukasz Rymanowski @ 2014-04-30  9:13 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: szymon.janc, johan.hedberg, Lukasz Rymanowski

This patch set adds major part of GATT server support for Android:
* GATT database extension to get, read and write data
* Handling GATT Server Android requests
* Create listening socket for BLE.
* Support GATT Service
* Support Device Information Service
* Support Service Changed (skeleton)
* some bugfixes

Still some improvements are needed.

Tested on PC and Nexus 5 as peripheral device.

v2:
* Handled comments from Johan
* Added complete callback to database requests
* some bugfixes found during tests with haltest
* Rebase on upstream

v3:
* fixed android/gatt: Add support for send indication

v4:
* simplify communication between gatt server and database
* Some bugfixes 

Grzegorz Kolodziejczyk (3):
  android/gatt: Add support for ATT read by type
  android/gatt: Add MTU request cmd handling
  android/gatt: Add Find info gatt server cmd handling

Jakub Tyszkowski (3):
  android/gatt: Remove redundant find function parameter
  android/gatt: Register device information service
  android/gatt: Register GATT service

Lukasz Rymanowski (21):
  android/gatt: Rename listen_clients to listen_apps
  android/gatt: Add listening socket for GATT
  android/gatt: Assume that each server wants waits for connection
  android/gatt: Add ATT msg handler
  shared/gatt: Use bdaddr instead of request_id
  shared/gatt: Extend read/write callback with offset
  shared/gatt: Add att_opcode to read/write callback
  android/bluetooth: Add function for getting device Android name
  android/gatt: Add register GAP Service
  gatt: Add some characteristics uuids
  android/gatt: Add support for ATT read by group type
  shared/gatt: Add support to read from database
  android/gatt: Add support to read request
  shared/gatt: Add support for write request
  android/gatt: Add support for write request
  android/gatt: Add support for execute write
  android/gatt: Add write_cb to GATT server
  android/gatt: Add read_cb for GATT Server
  android/hal-gatt-api: Fix IPC definition for send response
  android/gatt: Add support for GATT server send response
  android/gatt: Add support for send indication

Marcin Kraglak (11):
  android/gatt: Add service functionality
  android/gatt: Add implementation of delete service
  android/gatt: Add included service implementation
  android/gatt: Add characteristic implementation
  android/gatt: Add handling of start service command
  android/gatt: Add stop service command handling
  android/gatt: Add descriptor implementation
  shared/gatt: Add function to read by group type
  shared/gatt: Add function to find by type
  shared/gatt: Add function to read by type
  shared/gatt: Add function to find information

 android/bluetooth.c  |    5 +
 android/bluetooth.h  |    1 +
 android/gatt.c       | 1249 +++++++++++++++++++++++++++++++++++++++++++++++---
 android/hal-gatt.c   |    7 +-
 android/hal-msg.h    |    3 +
 lib/uuid.h           |    7 +
 src/shared/gatt-db.c |  322 +++++++++++++
 src/shared/gatt-db.h |   60 ++-
 8 files changed, 1577 insertions(+), 77 deletions(-)

-- 
1.8.4


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

end of thread, other threads:[~2014-04-30 15:31 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-30  9:13 [PATCH v4 00/38] android/gatt: GATT server implementation Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 01/38] android/gatt: Rename listen_clients to listen_apps Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 02/38] android/gatt: Remove redundant find function parameter Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 03/38] android/gatt: Add service functionality Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 04/38] android/gatt: Add implementation of delete service Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 05/38] android/gatt: Add included service implementation Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 06/38] android/gatt: Add characteristic implementation Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 07/38] android/gatt: Add handling of start service command Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 08/38] android/gatt: Add stop service command handling Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 09/38] android/gatt: Add descriptor implementation Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 10/38] android/gatt: Add listening socket for GATT Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 11/38] android/gatt: Assume that each server wants waits for connection Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 12/38] android/gatt: Add ATT msg handler Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 13/38] shared/gatt: Use bdaddr instead of request_id Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 14/38] shared/gatt: Extend read/write callback with offset Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 15/38] shared/gatt: Add att_opcode to read/write callback Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 16/38] android/bluetooth: Add function for getting device Android name Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 17/38] android/gatt: Add register GAP Service Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 18/38] gatt: Add some characteristics uuids Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 19/38] android/gatt: Register device information service Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 20/38] android/gatt: Register GATT service Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 21/38] shared/gatt: Add function to read by group type Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 22/38] shared/gatt: Add function to find by type Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 23/38] shared/gatt: Add function to read " Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 24/38] shared/gatt: Add function to find information Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 25/38] android/gatt: Add support for ATT read by group type Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 26/38] android/gatt: Add support for ATT read by type Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 27/38] shared/gatt: Add support to read from database Lukasz Rymanowski
2014-04-30  9:13 ` [PATCH v4 28/38] android/gatt: Add support to read request Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 29/38] android/gatt: Add MTU request cmd handling Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 30/38] android/gatt: Add Find info gatt server " Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 31/38] shared/gatt: Add support for write request Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 32/38] android/gatt: " Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 33/38] android/gatt: Add support for execute write Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 34/38] android/gatt: Add write_cb to GATT server Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 35/38] android/gatt: Add read_cb for GATT Server Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 36/38] android/hal-gatt-api: Fix IPC definition for send response Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 37/38] android/gatt: Add support for GATT server " Lukasz Rymanowski
2014-04-30  9:14 ` [PATCH v4 38/38] android/gatt: Add support for send indication Lukasz Rymanowski
2014-04-30 11:31 ` [PATCH v4 00/38] android/gatt: GATT server implementation Szymon Janc
2014-04-30 15:31 ` Szymon Janc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.