Yes, there is.
http://www.microsoft.com/whdc/device/stream/vidcap/UVCViewdwn.mspx
Download the program and fire it up. Look for your Bluetooth transceiver.
There are two entries of interest (at least, that I've seen so far).
This one is near the top of the list. It tells you the transfer
mode currently being used. I presume the values here might be 01
or 02. The example here, is what is seen for my USB mouse.
Current Config Value: 0x01 -> Device Bus Speed: Full (i.e. USB
1.1)
The second entry of interest, is "bcdUSB". Valid values are
0100, 0110, and 0200, for USB 1.0, USB 1.1, and USB 2.0 standards.
bcdUSB: 0x0110 <--- My mouse is USB 1.1
max.
http://www.beyondlogic.org/usbnutshell/usb5.htm
"The bcdUSB field reports the highest version of USB the device
supports"
If you examine the bcdUSB field, that will tell you the maximum rate
the device supports. But it doesn't tell you the minimum rate that
would make the device useful. For example, if you had a USB video capture
device, and forced it to operate at USB 1.1 rates, I presume it would
drop frames. I don't know if there is a mechanism in the enumerated
info, to indicate the device's preference or not. For example, I'm not
aware of any error message in Windows that says, in effect, "this device
won't work unless you use USB2". It seems that backward compatibility is
the assumption, but that may not always be the case. There is bound to
be an application, with a "hard" datarate requirement.
Looking at some video devices today, although they didn't come right
out and say it, it looked like the device would switch to lower
resolution capture, if the interface speed dropped. So that seemed
to be their solution to finding an inadequate data transfer rate.
Paul