878ed22696
Has been seen to work on several cards and communicating with several mobile phones to use them as modems etc. We are still talking with 3com to try get them to allow us to include the firmware for their pccard in the driver but the driver is here.. In the mean time it can be downloaded from the 3com website and loaded using the utility bt3cfw(8) (supplied) (instructions in the man page) Not yet linked to the build Submitted by: Maksim Yevmenkin <myevmenk@exodus.net> Approved by: re
31 lines
951 B
Plaintext
31 lines
951 B
Plaintext
# $FreeBSD$
|
|
$Id: TODO,v 1.1.1.1 2002/06/09 20:21:47 max Exp $
|
|
|
|
1) SMP/Locking
|
|
|
|
The code makes use of ng_send_fn() whenever possible. Just
|
|
need to verify and make sure i did it right
|
|
|
|
2) Review USB ATTACH function
|
|
|
|
It is a bit ugly now. Probably need a better way to discover
|
|
USB device configuration.
|
|
|
|
2) Firmware upgrade
|
|
|
|
According to Bluetooth spec device may present third interface
|
|
to perform firmware upgrade. 3Com USB Bluetooth dongle has
|
|
such interface. Need to implement set of Netgraph messages.
|
|
|
|
3) Understand and fix isoc. USB transfers (SCO data)
|
|
|
|
Currenty device reports that is got zero bytes and calls
|
|
isoc_in_complete callback over and over again. Why?
|
|
Also might need to setup at least two isoc. transfers in
|
|
both directions and switch them on the fly. Just to ensure
|
|
there at least one transfer at any time ready to run.
|
|
|
|
4) Currently interrupt transfers are done as bulk-in transfers
|
|
|
|
Need to check if that is allowed.
|