Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/4] TODO: Remove item related to ATT transation timeouts
@ 2011-02-28 13:44 Claudio Takahasi
  2011-02-28 13:44 ` [PATCH 2/4] TODO: Remove item related to Client Characteristic Configuration Claudio Takahasi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Claudio Takahasi @ 2011-02-28 13:44 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Claudio Takahasi

---
 TODO |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/TODO b/TODO
index 246eb33..45ecb09 100644
--- a/TODO
+++ b/TODO
@@ -205,13 +205,6 @@ ATT/GATT
   Priority: Low
   Complexity: C2
 
-- gattrib needs to be extended to handle Attribute Protocol Transactions
-  timeout. See Volume 3, Part F, section 3.3.3 and Part G, section 4.14
-  for more information.
-
-  Priority: Low
-  Complexity: C2
-
 Management Interface
 ====================
 
-- 
1.7.4.1


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

* [PATCH 2/4] TODO: Remove item related to Client Characteristic Configuration
  2011-02-28 13:44 [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Claudio Takahasi
@ 2011-02-28 13:44 ` Claudio Takahasi
  2011-02-28 13:44 ` [PATCH 3/4] TODO: Add item related to UUID handling Claudio Takahasi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Claudio Takahasi @ 2011-02-28 13:44 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Claudio Takahasi

Client Characteristic Configuration is already implemented in the
attribute server. Implementation in the attribute client is still
missing.
---
 TODO |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/TODO b/TODO
index 45ecb09..cf37179 100644
--- a/TODO
+++ b/TODO
@@ -188,15 +188,6 @@ ATT/GATT
   Priority: Low
   Complexity: C2
 
-- Implement Client Characteristic Configuration support in the attribute
-  server to manage indications and notications. This is a per client attribute
-  to control how the client wants to receive reports of changes in a given
-  characteristic value.
-  See Volume 3, Part G, section 3.3.3.3 for more information
-
-  Priority: Low
-  Complexity: C2
-
 - Define attribute server API. External applications needs to register,
   change attributes and to be notified about changes. Example: Proximity,
   Time and Alert Profiles. "Local Service hierarchy" in the attribute-api
-- 
1.7.4.1


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

* [PATCH 3/4] TODO: Add item related to UUID handling
  2011-02-28 13:44 [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Claudio Takahasi
  2011-02-28 13:44 ` [PATCH 2/4] TODO: Remove item related to Client Characteristic Configuration Claudio Takahasi
@ 2011-02-28 13:44 ` Claudio Takahasi
  2011-02-28 13:44 ` [PATCH 4/4] TODO: Add item to implement device type in the DeviceFound signal Claudio Takahasi
  2011-03-01 19:12 ` [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Johan Hedberg
  3 siblings, 0 replies; 5+ messages in thread
From: Claudio Takahasi @ 2011-02-28 13:44 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Claudio Takahasi

---
 TODO |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/TODO b/TODO
index cf37179..9f899b0 100644
--- a/TODO
+++ b/TODO
@@ -17,6 +17,19 @@ Background
 General
 ==========
 
+- UUID128 handling: Create new functions to handle UUIDs on host order.
+  Functions should start with prefix "bt_uuid". In the first phase, attribute
+  server/client and gatttool code should be changed to use these new functions.
+  The idea is to keep the consistency for UUID-16, UUID-32 and UUID-128. SDP
+  functions store UUID-16 and UUID-32 on host order, however UUID-128 is stored
+  on network order/big endian. Attribute Protocol uses little endian, while
+  SDP uses big endian. The idea is always store the UUID values on host order
+  and use utility functions to convert to the proper byte order depending on
+  the protocol: ATT or SDP.
+
+  Priority: high
+  Complexity: C1
+
 - Rename glib-helper file to a more convenient name. The ideia is try to keep
   only sdp helpers functions. bt_* prefix shall be also changed.
 
-- 
1.7.4.1


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

* [PATCH 4/4] TODO: Add item to implement device type in the DeviceFound signal
  2011-02-28 13:44 [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Claudio Takahasi
  2011-02-28 13:44 ` [PATCH 2/4] TODO: Remove item related to Client Characteristic Configuration Claudio Takahasi
  2011-02-28 13:44 ` [PATCH 3/4] TODO: Add item related to UUID handling Claudio Takahasi
@ 2011-02-28 13:44 ` Claudio Takahasi
  2011-03-01 19:12 ` [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Johan Hedberg
  3 siblings, 0 replies; 5+ messages in thread
From: Claudio Takahasi @ 2011-02-28 13:44 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Claudio Takahasi

---
 TODO |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/TODO b/TODO
index 9f899b0..4e3585e 100644
--- a/TODO
+++ b/TODO
@@ -78,6 +78,12 @@ Low Energy
   Priority: Medium
   Complexity: C2
 
+- Add new property in the DeviceFound signal to report the device type:
+  BR/EDR, single mode or dual-mode.
+
+  Priority: Medium
+  Complexity: C1
+
 - Privacy: When privacy is enabled in the adapter, LE scanning/connection
   should use a private address. StartDiscovery method shall be changed and
   new adapter property shall be added.
-- 
1.7.4.1


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

* Re: [PATCH 1/4] TODO: Remove item related to ATT transation timeouts
  2011-02-28 13:44 [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Claudio Takahasi
                   ` (2 preceding siblings ...)
  2011-02-28 13:44 ` [PATCH 4/4] TODO: Add item to implement device type in the DeviceFound signal Claudio Takahasi
@ 2011-03-01 19:12 ` Johan Hedberg
  3 siblings, 0 replies; 5+ messages in thread
From: Johan Hedberg @ 2011-03-01 19:12 UTC (permalink / raw)
  To: Claudio Takahasi; +Cc: linux-bluetooth

Hi Claudio,

On Mon, Feb 28, 2011, Claudio Takahasi wrote:
> ---
>  TODO |    7 -------
>  1 files changed, 0 insertions(+), 7 deletions(-)

All four patches have been pushed upstream. Thanks.

Johan

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

end of thread, other threads:[~2011-03-01 19:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-28 13:44 [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Claudio Takahasi
2011-02-28 13:44 ` [PATCH 2/4] TODO: Remove item related to Client Characteristic Configuration Claudio Takahasi
2011-02-28 13:44 ` [PATCH 3/4] TODO: Add item related to UUID handling Claudio Takahasi
2011-02-28 13:44 ` [PATCH 4/4] TODO: Add item to implement device type in the DeviceFound signal Claudio Takahasi
2011-03-01 19:12 ` [PATCH 1/4] TODO: Remove item related to ATT transation timeouts Johan Hedberg

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