Re: uvisor(4) and Palm Z22 under 8.X

2009-08-05 Thread Hans Petter Selasky
On Monday 03 August 2009 22:43:55 Marc Fonvieille wrote: The upload speed is fast and perfect, the download is still slow but acceptable (in fact same as with my dirty buffer hacks) Good. Here is the final patch. Note sure if I can get it in before 8 is released:

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-05 Thread Marc Fonvieille
On Wed, Aug 05, 2009 at 09:25:27AM +0200, Hans Petter Selasky wrote: On Monday 03 August 2009 22:43:55 Marc Fonvieille wrote: The upload speed is fast and perfect, the download is still slow but acceptable (in fact same as with my dirty buffer hacks) Good. Here is the final patch. Note

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-03 Thread Hans Petter Selasky
On Sunday 02 August 2009 22:18:16 Marc Fonvieille wrote: On Sun, Aug 02, 2009 at 10:15:23PM +0200, Marc Fonvieille wrote: Attach for real the patch Sorry, I dunno why attachement is not working today, here's the patch: Hi, Can you verify that the driver works with 1024 byte buffers

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-03 Thread Marc Fonvieille
On Mon, Aug 03, 2009 at 08:33:49AM +0200, Hans Petter Selasky wrote: On Sunday 02 August 2009 22:18:16 Marc Fonvieille wrote: On Sun, Aug 02, 2009 at 10:15:23PM +0200, Marc Fonvieille wrote: Attach for real the patch Sorry, I dunno why attachement is not working today, here's the patch:

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-03 Thread Hans Petter Selasky
Hi, Can you try: #define UVISORIBUFSIZE 1024 #define UVISOROBUFSIZE 32 I will patch this shortly. --HPS ___ freebsd-usb@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-usb To unsubscribe, send

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-03 Thread Marc Fonvieille
On Mon, Aug 03, 2009 at 11:38:44AM +0200, Hans Petter Selasky wrote: Hi, Can you try: #define UVISORIBUFSIZE 1024 #define UVISOROBUFSIZE 32 install OK listOK backup fails when it tries to get large files (45308 bytes in my case). -- Marc

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-03 Thread Hans Petter Selasky
Hi, I've tried to optimise the device upload path to 1.0 MByte/second. Download path is limited to wMaxPacketSize*1000 byte/second, due to the device not short terminating its data. Would require a special driver, maybe via libusb. Could you check upload and download speed? --HPS --- uvisor.c

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-03 Thread Marc Fonvieille
On Mon, Aug 03, 2009 at 01:32:36PM +0200, Hans Petter Selasky wrote: Hi, I've tried to optimise the device upload path to 1.0 MByte/second. Download path is limited to wMaxPacketSize*1000 byte/second, due to the device not short terminating its data. Would require a special driver, maybe

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-02 Thread Marc Fonvieille
Hello, I did some progress. I read 7.X uvisor.c code and I noted this: /* * Crank down UVISORBUFSIZE from 1024 to 64 to avoid a problem where * the Palm device and the USB host controller deadlock. The USB host * controller is expecting an early-end-of-transmission packet with 0 * data, and

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-02 Thread Marc Fonvieille
Attach for real the patch -- Marc ___ freebsd-usb@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-usb To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org

Re: uvisor(4) and Palm Z22 under 8.X

2009-08-02 Thread Marc Fonvieille
On Sun, Aug 02, 2009 at 10:15:23PM +0200, Marc Fonvieille wrote: Attach for real the patch Sorry, I dunno why attachement is not working today, here's the patch: Index: uvisor.c === --- uvisor.c(revision 196038) +++ uvisor.c

uvisor(4) and Palm Z22 under 8.X

2009-07-28 Thread Marc Fonvieille
Hello, I'm trying to sync a Palm Z22 under 8.0-BETA2 with pilot-xfer from palm/pilot-link. If I plug the Z22, the system doesn't create a /dev/cuaUx node. I had the same problem under 7.X and 6.X, I used to patch uvisor.c (a very dirty hack btw) to allow the creation of the device node. So I