From 4760ada065f22604795295d1377e6a50a2d5efac Mon Sep 17 00:00:00 2001 From: darkhz Date: Sun, 21 Aug 2022 21:32:48 +0530 Subject: [PATCH] shared/util: Correct UUID for Microphone Control According to the Bluetooth product specification list, the allocated UUID for "Microphone Control" is 0x184D, not 0x184C. --- src/shared/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/util.c b/src/shared/util.c index b74a005ce..e1e56459a 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -338,7 +338,7 @@ static const struct { { 0x1849, "Generic Media Control" }, { 0x184b, "Telephony Bearer" }, { 0x184c, "Generic Telephony Bearer" }, - { 0x184c, "Microphone Control" }, + { 0x184d, "Microphone Control" }, { 0x184e, "Audio Stream Control" }, { 0x184f, "Broadcast Audio Scan" }, { 0x1850, "Published Audio Capabilities" }, -- 2.47.3