Bluetooth profile driver

Can someone tell me how to install a device driver so that it sits under
the Microsoft Bluetooth Enumerator in the device tree? I’m writing a
Bluetooth profile driver and I want to use the Microsoft Bluetooth
Stack.

Thanks

Have you read through the Bluetooth related sections in the latest WDK help? Any specific questions?

Bill M.
“Nathan Burns” wrote in message news:xxxxx@ntdev…
Can someone tell me how to install a device driver so that it sits under the Microsoft Bluetooth Enumerator in the device tree? I’m writing a Bluetooth profile driver and I want to use the Microsoft Bluetooth Stack.

Thanks

I’ve read through the Bluetooth sections in the WDK (I’m using WDK
6000). I trying to install my Bluetooth profile driver so that it sits
above bthenum. I attempt to install my device on the bthenum bus but it
doesn’t make it. The device gets installed on the Root. What do I need
to do to put my device driver on the bthenum bus?

Nathan


From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Bill McKenzie
Sent: Wednesday, August 15, 2007 11:30 AM
To: Windows System Software Devs Interest List
Subject: Re:[ntdev] Bluetooth profile driver

Have you read through the Bluetooth related sections in the latest WDK
help? Any specific questions?

Bill M.

“Nathan Burns” wrote in message
news:xxxxx@ntdev…

Can someone tell me how to install a device driver so that it
sits under the Microsoft Bluetooth Enumerator in the device tree? I’m
writing a Bluetooth profile driver and I want to use the Microsoft
Bluetooth Stack.

Thanks


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer

You need to use BluetoothSetLocalServiceInfo user mode API to install a
Bluetooth service which would make bthenum create a PDO for you, for
which you will install your profile driver.

The following link has details on installing a bth device. You would
need to look at server side installation.

http://msdn2.microsoft.com/en-us/library/aa938560.aspx

HTH,

Praveen