* Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
@ 2010-09-22 19:25 Anderson Lizardo
2010-09-22 19:39 ` Johan Hedberg
0 siblings, 1 reply; 6+ messages in thread
From: Anderson Lizardo @ 2010-09-22 19:25 UTC (permalink / raw)
To: linux-bluetooth
The following changes since commit ec901c2428324ea2fe7d1bc2a2f3171ac5ed1950:
Johan Hedberg (1):
Fix reading local name from command complete event
are available in the git repository at:
git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
Claudio Takahasi (9):
Update characteristic value when a notification is received
Return an error if the path doesn't exist when registering a watcher
Add watcher's characteristic path verification before notify changes
Watchers don't need to reply for characteristic value updates
Change notification/indication output formating on gatttool
Report attribute changes for the Battery Service
Add missing response for handle value indication on attribute client
Remove forward declaration on gattrib source
Fix uninitialised value warning
Vinicius Costa Gomes (6):
Add encoders/decoders for Indication/Confirmation
Add support to the server to sending Indications
Add support for Indications to gatttool
Add support for Indications to the client
Add support for actively updating the watcher
Add a way to unregister GAttrib events
attrib/att.c | 50 +++++++++++++++++
attrib/att.h | 3 +
attrib/client.c | 113 +++++++++++++++++++++++++++++++++++++--
attrib/example.c | 19 +++----
attrib/gattrib.c | 150 ++++++++++++++++++++++++++++++++-------------------
attrib/gatttool.c | 40 +++++++++-----
src/attrib-server.c | 28 ++++++++++
7 files changed, 320 insertions(+), 83 deletions(-)
--
Anderson Lizardo
OpenBossa Labs - INdT
Manaus - Brazil
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
2010-09-22 19:25 Anderson Lizardo
@ 2010-09-22 19:39 ` Johan Hedberg
0 siblings, 0 replies; 6+ messages in thread
From: Johan Hedberg @ 2010-09-22 19:39 UTC (permalink / raw)
To: Anderson Lizardo; +Cc: linux-bluetooth
Hi Anderson,
On Wed, Sep 22, 2010, Anderson Lizardo wrote:
> The following changes since commit ec901c2428324ea2fe7d1bc2a2f3171ac5ed1950:
> Johan Hedberg (1):
> Fix reading local name from command complete event
>
> are available in the git repository at:
>
> git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
>
> Claudio Takahasi (9):
> Update characteristic value when a notification is received
> Return an error if the path doesn't exist when registering a watcher
> Add watcher's characteristic path verification before notify changes
> Watchers don't need to reply for characteristic value updates
> Change notification/indication output formating on gatttool
> Report attribute changes for the Battery Service
> Add missing response for handle value indication on attribute client
> Remove forward declaration on gattrib source
> Fix uninitialised value warning
>
> Vinicius Costa Gomes (6):
> Add encoders/decoders for Indication/Confirmation
> Add support to the server to sending Indications
> Add support for Indications to gatttool
> Add support for Indications to the client
> Add support for actively updating the watcher
> Add a way to unregister GAttrib events
>
> attrib/att.c | 50 +++++++++++++++++
> attrib/att.h | 3 +
> attrib/client.c | 113 +++++++++++++++++++++++++++++++++++++--
> attrib/example.c | 19 +++----
> attrib/gattrib.c | 150 ++++++++++++++++++++++++++++++++-------------------
> attrib/gatttool.c | 40 +++++++++-----
> src/attrib-server.c | 28 ++++++++++
> 7 files changed, 320 insertions(+), 83 deletions(-)
Thanks. All patches have been merged upstream.
Johan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
@ 2010-09-22 20:37 Anderson Lizardo
2010-09-22 21:04 ` Johan Hedberg
0 siblings, 1 reply; 6+ messages in thread
From: Anderson Lizardo @ 2010-09-22 20:37 UTC (permalink / raw)
To: linux-bluetooth
The following changes since commit a5e1be914ba5480f9eae7ab9dc31e30524f74182:
Claudio Takahasi (1):
Fix uninitialised value warning
are available in the git repository at:
git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
Claudio Takahasi (13):
Add g_attrib_set_destroy_function in gattrib
Use the destroy function to reset the GAttrib reference
Increment GAttrib reference for each GATT/ATT request
Fix disconnection when multiple watchers are registered
Fix seg fault if the watcher exit before the connection complete
Add UnregisterCharacteristicsWatcher implementation
Unregister the primary and characteristic objects
Fix memory leak of characteristic and primary service lists
Remove the timeout source function when the example server exits
Delete all stored data related to GATT/ATT when the device is removed
Fix wrong D-Bus object path for Device Service
Add a new property "Services" on the Device object
Fix coding style issues in attribute client code
attrib/client.c | 278 +++++++++++++++++++++++++++++++------------------
attrib/example.c | 9 ++-
attrib/example.h | 1 +
attrib/gattrib.c | 35 ++++--
attrib/gattrib.h | 3 +
attrib/manager.c | 1 +
doc/attribute-api.txt | 3 +-
doc/device-api.txt | 4 +
src/attrib-server.c | 11 ++-
src/device.c | 1 +
src/storage.c | 68 ++++++++++++
src/storage.h | 1 +
12 files changed, 297 insertions(+), 118 deletions(-)
Regards,
--
Anderson Lizardo
OpenBossa Labs - INdT
Manaus - Brazil
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
2010-09-22 20:37 Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream Anderson Lizardo
@ 2010-09-22 21:04 ` Johan Hedberg
0 siblings, 0 replies; 6+ messages in thread
From: Johan Hedberg @ 2010-09-22 21:04 UTC (permalink / raw)
To: Anderson Lizardo; +Cc: linux-bluetooth
Hi Anderson,
On Wed, Sep 22, 2010, Anderson Lizardo wrote:
> The following changes since commit a5e1be914ba5480f9eae7ab9dc31e30524f74182:
> Claudio Takahasi (1):
> Fix uninitialised value warning
>
> are available in the git repository at:
>
> git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
>
> Claudio Takahasi (13):
> Add g_attrib_set_destroy_function in gattrib
> Use the destroy function to reset the GAttrib reference
> Increment GAttrib reference for each GATT/ATT request
> Fix disconnection when multiple watchers are registered
> Fix seg fault if the watcher exit before the connection complete
> Add UnregisterCharacteristicsWatcher implementation
> Unregister the primary and characteristic objects
> Fix memory leak of characteristic and primary service lists
> Remove the timeout source function when the example server exits
> Delete all stored data related to GATT/ATT when the device is removed
> Fix wrong D-Bus object path for Device Service
> Add a new property "Services" on the Device object
> Fix coding style issues in attribute client code
>
> attrib/client.c | 278 +++++++++++++++++++++++++++++++------------------
> attrib/example.c | 9 ++-
> attrib/example.h | 1 +
> attrib/gattrib.c | 35 ++++--
> attrib/gattrib.h | 3 +
> attrib/manager.c | 1 +
> doc/attribute-api.txt | 3 +-
> doc/device-api.txt | 4 +
> src/attrib-server.c | 11 ++-
> src/device.c | 1 +
> src/storage.c | 68 ++++++++++++
> src/storage.h | 1 +
> 12 files changed, 297 insertions(+), 118 deletions(-)
Thanks. All patches have been merged upstream.
Johan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
@ 2010-10-04 14:11 Anderson Lizardo
2010-10-04 15:16 ` Johan Hedberg
0 siblings, 1 reply; 6+ messages in thread
From: Anderson Lizardo @ 2010-10-04 14:11 UTC (permalink / raw)
To: linux-bluetooth
The following changes since commit bb061d925ad661836d5279b543a07d17683d9b6e:
Marcel Holtmann (1):
Update list of company identifiers
are available in the git repository at:
git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
Anderson Lizardo (7):
Remove unnecessary check for watcher path
Rename global "handle" variable to "sdp_handle"
Add test/test-attrib for testing Attribute API
Add org.bluez.Watcher interface to default policy
Fix and refactor characteristic value update code
Add Write Characteristic Value support to attribute server
Allow errors to propagate from connection callback
Bruna Moreira (8):
Add encoders/decoders for the Write command
Implement Write command in GATT API
Move connection common code to l2cap_connect()
Write new value for characteristic value
Use g_slist_foreach() instead of a for loop
Make handle parameter mandatory in gatttool
Add new option for char value write in gatttool
Implement characteristic_write callback in gatttool
attrib/att.c | 45 ++++++++++++++++
attrib/att.h | 4 ++
attrib/client.c | 145 ++++++++++++++++++++++++---------------------------
attrib/gatt.c | 11 ++++
attrib/gatt.h | 3 +
attrib/gatttool.c | 120 ++++++++++++++++++++++++++++++++++++------
src/attrib-server.c | 32 ++++++++++--
src/bluetooth.conf | 1 +
test/test-attrib | 120 ++++++++++++++++++++++++++++++++++++++++++
9 files changed, 381 insertions(+), 100 deletions(-)
create mode 100755 test/test-attrib
--
Anderson Lizardo
OpenBossa Labs - INdT
Manaus - Brazil
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
2010-10-04 14:11 Anderson Lizardo
@ 2010-10-04 15:16 ` Johan Hedberg
0 siblings, 0 replies; 6+ messages in thread
From: Johan Hedberg @ 2010-10-04 15:16 UTC (permalink / raw)
To: Anderson Lizardo; +Cc: linux-bluetooth
Hi,
On Mon, Oct 04, 2010, Anderson Lizardo wrote:
> The following changes since commit bb061d925ad661836d5279b543a07d17683d9b6e:
> Marcel Holtmann (1):
> Update list of company identifiers
>
> are available in the git repository at:
>
> git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream
>
> Anderson Lizardo (7):
> Remove unnecessary check for watcher path
> Rename global "handle" variable to "sdp_handle"
> Add test/test-attrib for testing Attribute API
> Add org.bluez.Watcher interface to default policy
> Fix and refactor characteristic value update code
> Add Write Characteristic Value support to attribute server
> Allow errors to propagate from connection callback
>
> Bruna Moreira (8):
> Add encoders/decoders for the Write command
> Implement Write command in GATT API
> Move connection common code to l2cap_connect()
> Write new value for characteristic value
> Use g_slist_foreach() instead of a for loop
> Make handle parameter mandatory in gatttool
> Add new option for char value write in gatttool
> Implement characteristic_write callback in gatttool
>
> attrib/att.c | 45 ++++++++++++++++
> attrib/att.h | 4 ++
> attrib/client.c | 145 ++++++++++++++++++++++++---------------------------
> attrib/gatt.c | 11 ++++
> attrib/gatt.h | 3 +
> attrib/gatttool.c | 120 ++++++++++++++++++++++++++++++++++++------
> src/attrib-server.c | 32 ++++++++++--
> src/bluetooth.conf | 1 +
> test/test-attrib | 120 ++++++++++++++++++++++++++++++++++++++++++
> 9 files changed, 381 insertions(+), 100 deletions(-)
> create mode 100755 test/test-attrib
Thanks, all patches have been pushed upstream.
Johan
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-10-04 15:16 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-22 20:37 Pull request: git://gitorious.org/~lizardo/bluez/lizardo-bluez.git for-upstream Anderson Lizardo
2010-09-22 21:04 ` Johan Hedberg
-- strict thread matches above, loose matches on Subject: below --
2010-10-04 14:11 Anderson Lizardo
2010-10-04 15:16 ` Johan Hedberg
2010-09-22 19:25 Anderson Lizardo
2010-09-22 19:39 ` Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).