All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/2] Add initial BASS support
@ 2023-03-01 15:33 iulia-tanasescu
  2023-03-01 15:33 ` [PATCH BlueZ 1/2] lib: Add BASS UUIDs and auxiliary defines iulia-tanasescu
  2023-03-01 15:33 ` [PATCH BlueZ 2/2] shared: Add initial BASS code iulia-tanasescu
  0 siblings, 2 replies; 9+ messages in thread
From: iulia-tanasescu @ 2023-03-01 15:33 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: iulia-tanasescu

This series of patches adds an initial support for the
Broadcast Audio Scan Service.

*** BLURB HERE ***

iulia-tanasescu (2):
  lib: Add BASS UUIDs and auxiliary defines
  shared: Add initial BASS code

 lib/hci.h              |    2 +
 lib/uuid.h             |    7 +
 src/shared/att-types.h |    1 +
 src/shared/bap.c       | 1065 ++++++++++++++++++++++++++++++++++++++++
 src/shared/bap.h       |   25 +
 src/shared/bass.h      |   43 ++
 6 files changed, 1143 insertions(+)
 create mode 100644 src/shared/bass.h

-- 
2.34.1


^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH BlueZ 1/2] lib: Add BASS UUIDs and auxiliary defines
@ 2023-03-01 13:42 iulia-tanasescu
  2023-03-01 14:14 ` Add initial BASS support bluez.test.bot
  0 siblings, 1 reply; 9+ messages in thread
From: iulia-tanasescu @ 2023-03-01 13:42 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: iulia-tanasescu

Added BASS and Audio Announcement UUIDs, added OCF for
BIG Create Sync.

---
 lib/hci.h  | 2 ++
 lib/uuid.h | 7 +++++++
 2 files changed, 9 insertions(+)

diff --git a/lib/hci.h b/lib/hci.h
index 50f385c1e..d01e6f8ee 100644
--- a/lib/hci.h
+++ b/lib/hci.h
@@ -1731,6 +1731,8 @@ typedef struct {
 } __attribute__ ((packed)) le_set_address_resolution_enable_cp;
 #define LE_SET_ADDRESS_RESOLUTION_ENABLE_CP_SIZE 1
 
+#define OCF_LE_BIG_CREATE_SYNC			0x006B
+
 /* Vendor specific commands */
 #define OGF_VENDOR_CMD		0x3f
 
diff --git a/lib/uuid.h b/lib/uuid.h
index 84ff46cd8..a6bbc3770 100644
--- a/lib/uuid.h
+++ b/lib/uuid.h
@@ -164,6 +164,13 @@ extern "C" {
 #define ASE_SOURCE_UUID					0x2bc5
 #define ASE_CP_UUID					0x2bc6
 
+#define BASS_UUID					0x184f
+#define BCST_AUDIO_SCAN_CP_UUID				0x2bc7
+#define BCST_RECV_STATE_UUID				0x2bc8
+
+#define BCST_AUDIO_ANNOUNCEMENT_SERVICE_UUID		0x1852
+#define BASIC_AUDIO_ANNOUNCEMENT_SERVICE_UUID		0x1851
+
 #define VCS_UUID					0x1844
 #define VOL_OFFSET_CS_UUID				0x1845
 #define AUDIO_INPUT_CS_UUID				0x1843
-- 
2.34.1


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

end of thread, other threads:[~2023-03-20  8:45 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-01 15:33 [PATCH BlueZ 0/2] Add initial BASS support iulia-tanasescu
2023-03-01 15:33 ` [PATCH BlueZ 1/2] lib: Add BASS UUIDs and auxiliary defines iulia-tanasescu
2023-03-01 15:39   ` Add initial BASS support bluez.test.bot
2023-03-01 21:05   ` [PATCH BlueZ 1/2] lib: Add BASS UUIDs and auxiliary defines Luiz Augusto von Dentz
2023-03-01 15:33 ` [PATCH BlueZ 2/2] shared: Add initial BASS code iulia-tanasescu
2023-03-01 22:29   ` Luiz Augusto von Dentz
2023-03-20  8:18     ` [EXT] " Iulia Tanasescu
2023-03-20  8:45     ` Iulia Tanasescu
  -- strict thread matches above, loose matches on Subject: below --
2023-03-01 13:42 [PATCH BlueZ 1/2] lib: Add BASS UUIDs and auxiliary defines iulia-tanasescu
2023-03-01 14:14 ` Add initial BASS support bluez.test.bot

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.