All of lore.kernel.org
 help / color / mirror / Atom feed
* BlueZ Supported Profiles
@ 2009-09-22  4:43 bluezprofile kernel
  2009-09-22 12:30 ` Vladimir Botka
  0 siblings, 1 reply; 6+ messages in thread
From: bluezprofile kernel @ 2009-09-22  4:43 UTC (permalink / raw)
  To: Linux Kernel Mailing List, linux-bluetooth

Hi,
I would like to know what are all profiles supported by BlueZ?
Is there any site gives list of profiles supported by BlueZ?
I am using BlueZ 4.46.

-- Nic shen

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

* Re: BlueZ Supported Profiles
  2009-09-22  4:43 BlueZ Supported Profiles bluezprofile kernel
@ 2009-09-22 12:30 ` Vladimir Botka
  2009-09-22 13:08   ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 6+ messages in thread
From: Vladimir Botka @ 2009-09-22 12:30 UTC (permalink / raw)
  To: bluezprofile kernel; +Cc: Linux Kernel Mailing List, linux-bluetooth

On Tue, 22 Sep 2009 10:13:40 +0530
bluezprofile kernel <bluezprofile@gmail.com> wrote:

> Hi,
> I would like to know what are all profiles supported by BlueZ?
> Is there any site gives list of profiles supported by BlueZ?
> I am using BlueZ 4.46.
> 

Hi,
you can see the provided services with the command:
# sdptool browse BTADDR

Get the BTADDR from the output of:
# hcitool scan

Run these command from another Linux box.
HTH,
-- 
	-vlado
	Vladimir Botka


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

* Re: BlueZ Supported Profiles
  2009-09-22 12:30 ` Vladimir Botka
@ 2009-09-22 13:08   ` Luiz Augusto von Dentz
  2009-09-22 13:32     ` Sreenivasulu Yellamaraju
  0 siblings, 1 reply; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2009-09-22 13:08 UTC (permalink / raw)
  To: Vladimir Botka
  Cc: bluezprofile kernel, Linux Kernel Mailing List, linux-bluetooth

Hi,

On Tue, Sep 22, 2009 at 9:30 AM, Vladimir Botka <vbotka@gmail.com> wrote:
> On Tue, 22 Sep 2009 10:13:40 +0530
> bluezprofile kernel <bluezprofile@gmail.com> wrote:
>
>> Hi,
>> I would like to know what are all profiles supported by BlueZ?
>> Is there any site gives list of profiles supported by BlueZ?
>> I am using BlueZ 4.46.
>>

BlueZ is modular, so it depends on which plugins you have enabled.
Also some profiles like a2dp and hfp depend on others components such
as PulseAudio to really work, so the answer is not that simple.
Perhaps you should ask what profiles you want so we can give a more
direct answer, in general we support most profiles used by desktops
and phones.

> Hi,
> you can see the provided services with the command:
> # sdptool browse BTADDR
>
> Get the BTADDR from the output of:
> # hcitool scan
>
> Run these command from another Linux box.

You can do the very same think locally:
# sdptool browse local


-- 
Luiz Augusto von Dentz
Engenheiro de Computação

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

* RE: BlueZ Supported Profiles
  2009-09-22 13:08   ` Luiz Augusto von Dentz
@ 2009-09-22 13:32     ` Sreenivasulu Yellamaraju
  2009-09-22 13:56       ` bluezprofile kernel
  0 siblings, 1 reply; 6+ messages in thread
From: Sreenivasulu Yellamaraju @ 2009-09-22 13:32 UTC (permalink / raw)
  To: linux-bluetooth



-----Original Message-----
From: linux-bluetooth-owner@vger.kernel.org [mailto:linux-bluetooth-owner@vger.kernel.org] On Behalf Of Luiz Augusto von Dentz
Sent: Tuesday, September 22, 2009 6:38 PM
To: Vladimir Botka
Cc: bluezprofile kernel; Linux Kernel Mailing List; linux-bluetooth@vger.kernel.org
Subject: Re: BlueZ Supported Profiles

Hi,

On Tue, Sep 22, 2009 at 9:30 AM, Vladimir Botka <vbotka@gmail.com> wrote:
> On Tue, 22 Sep 2009 10:13:40 +0530
> bluezprofile kernel <bluezprofile@gmail.com> wrote:
>
>> Hi,
>> I would like to know what are all profiles supported by BlueZ?
>> Is there any site gives list of profiles supported by BlueZ?
>> I am using BlueZ 4.46.
>>

BlueZ is modular, so it depends on which plugins you have enabled.
Also some profiles like a2dp and hfp depend on others components such
as PulseAudio to really work, so the answer is not that simple.
Perhaps you should ask what profiles you want so we can give a more
direct answer, in general we support most profiles used by desktops
and phones.

> Hi,
> you can see the provided services with the command:
> # sdptool browse BTADDR
>
> Get the BTADDR from the output of:
> # hcitool scan
>
> Run these command from another Linux box.

You can do the very same think locally:
# sdptool browse local

-- 
Luiz Augusto von Dentz
Engenheiro de Computação
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Hi,

"sdptool browse local" command will only show currently registered services and this list may not be exhaustive. 
The actual list of supported services can be seen from manpage of sdptool. Search for a list of keywords-
OPUSH,SP,KEYB,AVRTG etc.  You can try adding all of those services one by one and see if they are 
registered without any errors in local database.

However, mere successful registration of service in local database doesn't mean a certain
Profile is activated and working in the host. So, you can depend on service registration
process for only a hint.

Regards,
Sreenivasulu Y
SASKEN BUSINESS DISCLAIMER
-------------------------
This message may contain confidential, proprietary or legally privileged information. In 
case you are not the original intended Recipient of the message, you must not, directly or 
indirectly, use, Disclose, distribute, print, or copy any part of this message and you are 
requested to delete it and inform the sender. Any views expressed in this message are 
those of the individual sender unless otherwise stated. Nothing contained in this message 
shall be construed as an offer or acceptance of any offer by Sasken Communication 
Technologies Limited ("Sasken") unless sent with that express intent and with due 
authority of Sasken. Sasken has taken enough precautions to prevent the spread of 
viruses. However the company accepts no liability for any damage caused by any virus 
transmitted by this email


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

* Re: BlueZ Supported Profiles
  2009-09-22 13:32     ` Sreenivasulu Yellamaraju
@ 2009-09-22 13:56       ` bluezprofile kernel
  2009-09-23 10:39         ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 6+ messages in thread
From: bluezprofile kernel @ 2009-09-22 13:56 UTC (permalink / raw)
  To: Sreenivasulu Yellamaraju; +Cc: linux-bluetooth

Hi,

On Tue, Sep 22, 2009 at 7:02 PM, Sreenivasulu Yellamaraju
<sreenivasulu.yellamaraju@sasken.com> wrote:
>
>
> -----Original Message-----
> From: linux-bluetooth-owner@vger.kernel.org [mailto:linux-bluetooth-owner@vger.kernel.org] On Behalf Of Luiz Augusto von Dentz
> Sent: Tuesday, September 22, 2009 6:38 PM
> To: Vladimir Botka
> Cc: bluezprofile kernel; Linux Kernel Mailing List; linux-bluetooth@vger.kernel.org
> Subject: Re: BlueZ Supported Profiles
>
> Hi,
>
> On Tue, Sep 22, 2009 at 9:30 AM, Vladimir Botka <vbotka@gmail.com> wrote:
>> On Tue, 22 Sep 2009 10:13:40 +0530
>> bluezprofile kernel <bluezprofile@gmail.com> wrote:
>>
>>> Hi,
>>> I would like to know what are all profiles supported by BlueZ?
>>> Is there any site gives list of profiles supported by BlueZ?
>>> I am using BlueZ 4.46.
>>>
>
> BlueZ is modular, so it depends on which plugins you have enabled.
> Also some profiles like a2dp and hfp depend on others components such
> as PulseAudio to really work, so the answer is not that simple.
> Perhaps you should ask what profiles you want so we can give a more
> direct answer, in general we support most profiles used by desktops
> and phones.
>
>> Hi,
>> you can see the provided services with the command:
>> # sdptool browse BTADDR
>>
>> Get the BTADDR from the output of:
>> # hcitool scan
>>
>> Run these command from another Linux box.
>
> You can do the very same think locally:
> # sdptool browse local
>
> --
> Luiz Augusto von Dentz
> Engenheiro de Computação
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
> Hi,
>
> "sdptool browse local" command will only show currently registered services and this list may not be exhaustive.
> The actual list of supported services can be seen from manpage of sdptool. Search for a list of keywords-
> OPUSH,SP,KEYB,AVRTG etc.  You can try adding all of those services one by one and see if they are
> registered without any errors in local database.
>
> However, mere successful registration of service in local database doesn't mean a certain
> Profile is activated and working in the host. So, you can depend on service registration
> process for only a hint.
>
> Regards,
> Sreenivasulu Y
> SASKEN BUSINESS DISCLAIMER
> -------------------------
> This message may contain confidential, proprietary or legally privileged information. In
> case you are not the original intended Recipient of the message, you must not, directly or
> indirectly, use, Disclose, distribute, print, or copy any part of this message and you are
> requested to delete it and inform the sender. Any views expressed in this message are
> those of the individual sender unless otherwise stated. Nothing contained in this message
> shall be construed as an offer or acceptance of any offer by Sasken Communication
> Technologies Limited ("Sasken") unless sent with that express intent and with due
> authority of Sasken. Sasken has taken enough precautions to prevent the spread of
> viruses. However the company accepts no liability for any damage caused by any virus
> transmitted by this email
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

Thanks for the propt replies.

As for as I know BlueZ will support

A2DP, AVRCP, HS, HF, FTP, OPP, DUN, HID profiles.

and protocols GAP, SDP, AVDTP, AVCTP, RFCOMM, BNEP, L2CAP.

sdptool gives set of services. All the services implemented in BlueZ?
What is the version of each service/profile implemented in BlueZ?

Specially I would like to know details for the following profiles

GOEP - Generic Object Exchange Profile
HCRP - Hardcopy Cable Replacement Profile
HDP - Health Device Profile
MAP - Message Access Profile
PBAP - Phone Book Access Profile
SYNC - Synchronization Profile
SyncML - Multi Sync
VDP - Video Distribution Profile


-- Nic Shen

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

* Re: BlueZ Supported Profiles
  2009-09-22 13:56       ` bluezprofile kernel
@ 2009-09-23 10:39         ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2009-09-23 10:39 UTC (permalink / raw)
  To: bluezprofile kernel; +Cc: Sreenivasulu Yellamaraju, linux-bluetooth

Hi,

On Tue, Sep 22, 2009 at 10:56 AM, bluezprofile kernel
<bluezprofile@gmail.com> wrote:
> Hi,
>
>
> Thanks for the propt replies.
>
> As for as I know BlueZ will support
>
> A2DP, AVRCP, HS, HF, FTP, OPP, DUN, HID profiles.
>
> and protocols GAP, SDP, AVDTP, AVCTP, RFCOMM, BNEP, L2CAP.

You just missed PAN profile :D

> sdptool gives set of services. All the services implemented in BlueZ?
> What is the version of each service/profile implemented in BlueZ?

I don't remember the exactly version of each profile, but that gives
you an explanation why:

http://www.bluetooth.org/tpg/QLI_viewQDL.cfm?qid=15706

You can check other qualification, they may list what version the
qualification is about.

> Specially I would like to know details for the following profiles
>
> GOEP - Generic Object Exchange Profile
> HCRP - Hardcopy Cable Replacement Profile
> HDP - Health Device Profile
> MAP - Message Access Profile

Those are not implemented yet.

> PBAP - Phone Book Access Profile
> SYNC - Synchronization Profile
> SyncML - Multi Sync

PBAP is implemented as a plugin of obexd, SyncML is not really
supported directly by BlueZ but there are another projects such as
opensync that aim to support it.

> VDP - Video Distribution Profile

Another one not implemented, but it should be easy to support it as it
uses avdtp, although Im not sure if streaming a video over bluetooth
is really practical right now besides that I never saw a device which
implements VDP.

-- 
Luiz Augusto von Dentz
Engenheiro de Computação

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

end of thread, other threads:[~2009-09-23 10:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-22  4:43 BlueZ Supported Profiles bluezprofile kernel
2009-09-22 12:30 ` Vladimir Botka
2009-09-22 13:08   ` Luiz Augusto von Dentz
2009-09-22 13:32     ` Sreenivasulu Yellamaraju
2009-09-22 13:56       ` bluezprofile kernel
2009-09-23 10:39         ` Luiz Augusto von Dentz

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.