Linux bluetooth development
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@tieto.com>
To: Lukasz Rymanowski <lukasz.rymanowski@tieto.com>
Cc: linux-bluetooth@vger.kernel.org, johan.hedberg@gmail.com
Subject: Re: [PATCH v4 00/38] android/gatt: GATT server implementation
Date: Wed, 30 Apr 2014 13:31:52 +0200	[thread overview]
Message-ID: <3233975.LTFNmEEhXm@uw000953> (raw)
In-Reply-To: <1398849249-5868-1-git-send-email-lukasz.rymanowski@tieto.com>

Hi,

On Wednesday 30 of April 2014 11:13:31 Lukasz Rymanowski wrote:
> 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(-)
> 
> 

Patches 1-9 are now applied (with some whitespace fixes), thanks.

-- 
Best regards, 
Szymon Janc

  parent reply	other threads:[~2014-04-30 11:31 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Szymon Janc [this message]
2014-04-30 15:31 ` [PATCH v4 00/38] android/gatt: GATT server implementation Szymon Janc

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3233975.LTFNmEEhXm@uw000953 \
    --to=szymon.janc@tieto.com \
    --cc=johan.hedberg@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=lukasz.rymanowski@tieto.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox