Linux bluetooth development
 help / color / mirror / Atom feed
* [RFC 00/16] Basic code for Android BlueZ
@ 2013-09-27 14:12 Andrei Emeltchenko
  2013-09-27 14:12 ` [RFC 01/16] android: Add Adapter Bluetooth HAL template Andrei Emeltchenko
                   ` (15 more replies)
  0 siblings, 16 replies; 44+ messages in thread
From: Andrei Emeltchenko @ 2013-09-27 14:12 UTC (permalink / raw)
  To: linux-bluetooth

From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>

Skeletons for Android Bluetooth and Socket HALs and BlueZ daemon.

Andrei Emeltchenko (16):
  android: Add Adapter Bluetooth HAL template
  android: Add Socket Bluetooth HAL template
  android: Enable Socket interface
  android: Start Android Bluetooth daemon
  android: Add Android Makefile for mgmt library
  android: Add basic mgmt initialization sequence
  android: Create HAL API header skeleton
  android: Add Android HAL callback task
  android: Add adapter and device struct for BlueZ daemon
  android: Add Android Makefile for libbluetooth
  android: sdp: Reuse BlueZ SDP server in Android
  android: Add cap to bind to port < 1024
  android: Implement read_info_complete callback
  android: Handle mgmt changed events
  android: Implement basic HAL server
  android: Add HAL message helpers

 Makefile.android         |   10 +-
 android/Android.mk       |  124 +++++++++++
 android/bt_adapter.c     |  132 ++++++++++++
 android/bt_adapter.h     |   68 +++++++
 android/hal.h            |   18 ++
 android/hal_bluetooth.c  |  412 +++++++++++++++++++++++++++++++++++++
 android/hal_bt_sock.c    |   84 ++++++++
 android/hal_cb_thread.c  |  144 +++++++++++++
 android/hal_msg.c        |  241 ++++++++++++++++++++++
 android/hal_msg.h        |  263 ++++++++++++++++++++++++
 android/hal_msg_client.c |  112 ++++++++++
 android/hal_msg_client.h |   25 +++
 android/main.c           |  508 ++++++++++++++++++++++++++++++++++++++++++++++
 android/main.h           |   25 +++
 configure.ac             |    4 +
 15 files changed, 2168 insertions(+), 2 deletions(-)
 create mode 100644 android/bt_adapter.c
 create mode 100644 android/bt_adapter.h
 create mode 100644 android/hal.h
 create mode 100644 android/hal_bluetooth.c
 create mode 100644 android/hal_bt_sock.c
 create mode 100644 android/hal_cb_thread.c
 create mode 100644 android/hal_msg.c
 create mode 100644 android/hal_msg.h
 create mode 100644 android/hal_msg_client.c
 create mode 100644 android/hal_msg_client.h
 create mode 100644 android/main.h

-- 
1.7.10.4


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

end of thread, other threads:[~2013-09-30 12:14 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-27 14:12 [RFC 00/16] Basic code for Android BlueZ Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 01/16] android: Add Adapter Bluetooth HAL template Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 02/16] android: Add Socket " Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 03/16] android: Enable Socket interface Andrei Emeltchenko
2013-09-27 16:04   ` Anderson Lizardo
2013-09-27 14:12 ` [RFC 04/16] android: Start Android Bluetooth daemon Andrei Emeltchenko
2013-09-29 13:28   ` Marcel Holtmann
2013-09-30  7:07     ` Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 05/16] android: Add Android Makefile for mgmt library Andrei Emeltchenko
2013-09-29 13:34   ` Marcel Holtmann
2013-09-27 14:12 ` [RFC 06/16] android: Add basic mgmt initialization sequence Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 07/16] android: Create HAL API header skeleton Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 08/16] android: Add Android HAL callback task Andrei Emeltchenko
2013-09-29 13:22   ` Marcel Holtmann
2013-09-27 14:12 ` [RFC 09/16] android: Add adapter and device struct for BlueZ daemon Andrei Emeltchenko
2013-09-27 17:07   ` Anderson Lizardo
2013-09-29 13:38   ` Marcel Holtmann
2013-09-30  7:28     ` Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 10/16] android: Add Android Makefile for libbluetooth Andrei Emeltchenko
2013-09-27 18:01   ` Anderson Lizardo
2013-09-30  7:32     ` Andrei Emeltchenko
2013-09-30 12:14       ` Szymon Janc
2013-09-27 14:12 ` [RFC 11/16] android: sdp: Reuse BlueZ SDP server in Android Andrei Emeltchenko
2013-09-29 13:31   ` Marcel Holtmann
2013-09-30  7:45     ` Szymon Janc
2013-09-30  7:47     ` Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 12/16] android: Add cap to bind to port < 1024 Andrei Emeltchenko
2013-09-27 17:17   ` Anderson Lizardo
2013-09-27 17:21     ` Anderson Lizardo
2013-09-29 13:40   ` Marcel Holtmann
2013-09-30  7:36   ` Szymon Janc
2013-09-30  7:51     ` Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 13/16] android: Implement read_info_complete callback Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 14/16] android: Handle mgmt changed events Andrei Emeltchenko
2013-09-27 17:59   ` Anderson Lizardo
2013-09-27 14:12 ` [RFC 15/16] android: Implement basic HAL server Andrei Emeltchenko
2013-09-27 17:50   ` Anderson Lizardo
2013-09-30  8:25     ` Andrei Emeltchenko
2013-09-30  8:33       ` Marcel Holtmann
2013-09-30 10:26         ` Andrei Emeltchenko
2013-09-29 14:59   ` Johan Hedberg
2013-09-30  8:42     ` Andrei Emeltchenko
2013-09-27 14:12 ` [RFC 16/16] android: Add HAL message helpers Andrei Emeltchenko
2013-09-29 15:00   ` Johan Hedberg

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