Re: Problems with Mitsumi 7-in-1 USB Card Reader/Floppy combo

2006-09-05 Thread Hans Petter Selasky
On Tuesday 05 September 2006 03:16, Indigo 23 wrote:
 Thanks for the reply.  I already tried that, but unfortunetly the same
 thing happens :(
 Any other suggestions?

Maybe you want to try my new Giant free USB driver:

#
# How to install the new USB driver:
#

#
# First get all the sources 
# (you need /usr/ports/devel/subversion installed):
#

svn --username anonsvn --password anonsvn \
  checkout svn://svn.turbocat.net/i4b

#
# The following commands will
# install the driver on FreeBSD 6.x/7.x:
#

cd i4b/trunk/i4b/FreeBSD.usb
make S=../src package
make install

#
# Then build a new kernel (with modules)
#

--HPS
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems with Mitsumi 7-in-1 USB Card Reader/Floppy combo

2006-09-05 Thread Indigo 23

Thanks for that excellent suggestion.  It worked perfectly.  I just
have a few questions.

1) Any idea when this will be imported in to RELENG_6?
2) I have to do this everytime I update my sources, correct?
3) This is relatively stable, correct?  (I did test it out a bit, but
of course not thorougly enough to see how stable it is)

Thanks again.

On 9/5/06, Hans Petter Selasky [EMAIL PROTECTED] wrote:

On Tuesday 05 September 2006 03:16, Indigo 23 wrote:
 Thanks for the reply.  I already tried that, but unfortunetly the same
 thing happens :(
 Any other suggestions?

Maybe you want to try my new Giant free USB driver:

#
# How to install the new USB driver:
#

#
# First get all the sources
# (you need /usr/ports/devel/subversion installed):
#

svn --username anonsvn --password anonsvn \
  checkout svn://svn.turbocat.net/i4b

#
# The following commands will
# install the driver on FreeBSD 6.x/7.x:
#

cd i4b/trunk/i4b/FreeBSD.usb
make S=../src package
make install

#
# Then build a new kernel (with modules)
#

--HPS


___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems with Mitsumi 7-in-1 USB Card Reader/Floppy combo

2006-09-05 Thread Hans Petter Selasky
On Tuesday 05 September 2006 13:28, Indigo 23 wrote:
 Thanks for that excellent suggestion.  It worked perfectly.  I just
 have a few questions.

 1) Any idea when this will be imported in to RELENG_6?

I don't know. If I am right, you will see my driver in freebsd-current some 
time after Christmas.

 2) I have to do this everytime I update my sources, correct?

Yes.

 3) This is relatively stable, correct?  (I did test it out a bit, but
 of course not thorougly enough to see how stable it is)

Yes, it is stable, but be aware that if your system runs low on memory, you 
can get a panic saying, sleeping with mutex XXX locked, or something alike. 
That is because the umass device driver is still under the USB emulation 
layer of the old USB API, which is depreciated, and will be removed once I 
have completed the conversion of all USB device drivers. This will most 
likely happen before the end of this month. Then I need some help testing all 
the rewritten USB device drivers.

--HPS
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to [EMAIL PROTECTED]


Polar IR-USB: setting configuration index 0 failed

2006-09-05 Thread Claus Assmann
I'm trying to get a Polar IR-USB interface working with FreeBSD
6.1, but it fails with the error:

setting configuration index 0 failed

I enabled USB_DEBUG and added some more printf statements to see
what's going on. The (annotated) output looks like this:

! When the IR interface is plugged it it properly shows up:

ugen0: vendor 0x413c product 0x8000, rev 2.00/12.66, addr 2

! vendor DELL 0x413c  Dell

usbd_get_string: getting lang failed, using 0
ugen1: vendor 0x0da4 product 0x0001, rev 1.00/1.19, addr 2

! This is the Polar IR interface. However, the next message is:

ugen1: setting configuration index 0 failed

! Turning debugging on and starting at the recognition of the interface:

ugen1: vendor 0x0da4 product 0x0001, rev 1.00/1.19, addr 3
usbd_set_config_index: dev=0xc52cdc00 index=0
usbd_set_config_index: free old config
usbd_get_config_desc: confidx=0
usbd_get_desc: type=2, index=0, len=9
usbd_alloc_xfer() = 0xc4b97800
usbd_transfer: xfer=0xc4b97800, flags=2, pipe=0xc52e3800, running=0
usbd_dump_queue: pipe=0xc52e3800
usb_allocmem: use frag=0xc4bd4d00 size=9
usb_insert_transfer: pipe=0xc52e3800 running=0 timeout=5000
usb_event_thread: woke up
usb_discover
usb_add_task: task=0xc4b97888
usb_task_thread: woke up task=0xc4b97888
usb_transfer_complete: pipe=0xc52e3800 xfer=0xc4b97800 status=15 actlen=0

! This seems to be a timeout error;
! usbdi.h:USBD_TIMEOUT,   /* 15 */

usb_freemem: frag=0xc4bd4d00
usb_transfer_complete: repeat=0 new head=0
usbd_start_next: pipe=0xc52e3800, xfer=0
usbd_free_xfer: 0xc4b97800

! and here's the erorr again:

usbd_set_config_index: dev=0xc52cdc00, usbd_get_config_desc=15
ugen1: setting configuration index 0 failed
device_attach: ugen1 attach returned 6


The software that is used to read data (http://daveb.net/s710/)
uses libusb. It works under some Linux version (e.g., SuSE 9.3
but not 10.1). Is there some way to get this working under FreeBSD
too?

___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to [EMAIL PROTECTED]