Message ID | 20231122210727.893872-1-luiz.dentz@gmail.com |
---|---|
State | Superseded |
Headers | show |
Series | [BlueZ,v3,1/5] shared/util: Add GMAP related UUIDs | expand |
Hello: This series was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 22 Nov 2023 16:07:23 -0500 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This adds GMAP 1.0[1] UUIDs following the assigned numbers[2]. > > [1] https://www.bluetooth.org/DocMan/handlers/DownloadDoc.ashx?doc_id=576496 > [2] https://www.bluetooth.com/wp-content/uploads/Files/Specification/Assigned_Numbers.pdf?id=3 > > [...] Here is the summary with links: - [BlueZ,v3,1/5] shared/util: Add GMAP related UUIDs https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=e94853608c80 - [BlueZ,v3,2/5] monitor/att: Add GMAS attribute decoders https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=6af3b7290a3a - [BlueZ,v3,3/5] iso-tester: Add presets from GMAP https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=c9b48a6f84a8 - [BlueZ,v3,4/5] isotest: Add presets from GMAP https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=506413dba872 - [BlueZ,v3,5/5] client/player: Add presets from GMAP https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=813e1ce11993 You are awesome, thank you!
diff --git a/src/shared/util.c b/src/shared/util.c index bf37fce364ed..47efff750e30 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -773,6 +773,7 @@ static const struct { { 0x1854, "Hearing Aid" }, { 0x1855, "Telephony and Media Audio" }, { 0x1856, "Public Broadcast Announcement" }, + { 0x1858, "Gaming Audio" }, /* 0x1857 to 0x27ff undefined */ { 0x2800, "Primary Service" }, { 0x2801, "Secondary Service" }, @@ -1081,6 +1082,11 @@ static const struct { { 0x2bda, "Hearing Aid Features" }, { 0x2bdb, "Hearing Aid Preset Control Point" }, { 0x2bdc, "Active Preset Index" }, + { 0x2c00, "GMAP Role" }, + { 0x2c01, "UGG Features" }, + { 0x2c02, "UGT Features" }, + { 0x2c03, "BGS Features" }, + { 0x2c03, "BGR Features" }, /* vendor defined */ { 0xfeff, "GN Netcom" }, { 0xfefe, "GN ReSound A/S" },
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This adds GMAP 1.0[1] UUIDs following the assigned numbers[2]. [1] https://www.bluetooth.org/DocMan/handlers/DownloadDoc.ashx?doc_id=576496 [2] https://www.bluetooth.com/wp-content/uploads/Files/Specification/Assigned_Numbers.pdf?id=3 --- src/shared/util.c | 6 ++++++ 1 file changed, 6 insertions(+)