Please see the attached file.
linux-usb-devel£¬ÄúºÃ£¡
ÖÂ
Àñ£¡
Tim
[EMAIL PROTECTED]
___
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
http://lists.sourceforge.net/lists/listinfo/linux-usb-devel
I want to write a pda device driver.but I don't know how to begin it. Can you help
me ?
Thanks.
___
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
http://lists.sourceforge.net/lists/listinfo/linux-usb-devel
linux-usb-devel£¬ÄúºÃ£¡
how to transmit date from sa1100 to host.
ÖÂ
Àñ£¡
Tim
[EMAIL PROTECTED]
___
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
http://lists.sourceforge.net/lists
when I compile usbnet.c use :gcc -c -DMODULE -D_KERNEL_ usbnet.c ,it failed.
please tell me how to compile it.Thanks.
err.txt
I have a Assabet of intel sa1100 development board.I have download zImage in it.When
I use ifconfig in the Assabet,example:
Assbet side: #ifconfig usbf 1.1.1.1 netmask 255.255.255.0/*It's ok*/
PC side: #ifconfig usb0 1.1.1.2 netmask 255.255.255.0 /*
dear all :
Who can tell me about assebat's usb???
I can't ping between ipaq and pc??who can help me??
Thanks.
Tim.yu
___
[EMAIL PROTECTED]
To unsub
case), urb->status remains
USB_ST_URB_PENDING (bad). My guess is that after urb_priv->state is
set to URB_DEL there must be a guarenteed way to get dl_del_urb() called.
However I can see it.
Hints would be appreciated.
Thanks,
-Tim
___
[EMAIL
}
to cover the case where
(urb_priv->state == URB_DEL)is true but
(++(urb_priv->td_cnt) == urb_priv->length) was false.
This prevented the timeout from occuring for the first urb to be unlinked,
but not the second. :-(
Any more thoughts would be
e, or
protocol implementation) or a bad interaction between usb, usb-storage,
scsi, etc...
tw
On 01/18/2002 10:33 -0800, Miles Lane wrote:
>> On Fri, 2002-01-18 at 09:56, Tim Walberg wrote:
>> > Has anyone had much success using the Cast
Had a chance to attach the drive to a Windows system this
weekend, and had the same results, which seemed to indicate
that the drive may be bad. Took it in and exchanged it for
a new one, which has worked flawlessly for over 6 hours now,
so I think this issue has been resolved. Thanks to those
who
e patch itself. If I mailed you
in error, please drop me a short note.
I kindly ask you to approve the correctness of the patch, and pass it on to
the relevant people for inclusion into the mainline kernel.
Thanks,
Tim Schmielau ([EMAIL PROTECTED])
USB EHCI DRIVER
P: David Brownell
M:
e patch itself. If I mailed you
in error, please drop me a short note.
I kindly ask you to approve the correctness of the patch, and pass it on to
the relevant people for inclusion into the mainline kernel.
Thanks,
Tim Schmielau ([EMAIL PROTECTED])
USB MASS STORAGE DRIVER
P: Matthew Dharm
M:
On Fri, Mar 30, 2001 at 03:26:54PM -0500, Allen Barnett wrote:
> after printer.o is loaded, however, there doesn't seem to be enough
> information passed in from the hotplug invocation to extract the minor
> device number of the newly plugged in device. (The user-space daemons
> want to access /de
On Wednesday 04 April 2001 01:37, you wrote:
> Obvious, neat, and of course like all obvious neat ideas - broken - because
> devfs is dynamic so the symlink maintenance is dynamic. That means you need
> to either solve enough races to put devfs in userspace or internationalise
> devfs in the kerne
On Wednesday 04 April 2001 02:12, you wrote:
> Thats the bit devfs solves. Its the enumeration problem. You need to answer
> questions like 'what modems have I got right now' 'where is my sound' and
> 'is there a mouse'. For USB thats very important.
Yes, that's why I am working on the device reg
On Friday 06 April 2001 17:15, you wrote:
> - Update usbdevfs. Files should be "per-interface", not "per-device",
> to provide a model that's more consistent with PCI ("per-function").
> Names should be "stable" and based on topology.
Instead of making another USB-specific file system, why
Hi...
Looking at the Linux USB code (2.4.3) and I wonder why I dont have to acquire
any locks to access the usb_device structs.
When the device is disconnected in usb_disconnect() the usb_device struct is
freed, but no one prevents code that already has a pointer to it to access
it. And usb_h
On Wednesday 11 April 2001 20:04, you wrote:
> > When the device is disconnected in usb_disconnect() the usb_device struct
> > is freed, but no one prevents code that already has a pointer to it to
> > access it.
> Drivers storing the usb_device pointer are required to do that
> safely.
But how
On Wednesday 11 April 2001 23:10, you wrote:
> We use reference counting for most of the structures we use. The ioctl
> (or usbdevfs) should increment the reference count on the device when
> the application open's the device.
> When usb_disconnect gets called, it'll decrement the reference count
On Wednesday 26 September 2001 20:52, Juergen Stuber wrote:
> - Is there documentation somewhere on the USB driver interface?
http://usb.cs.tum.edu/usbdoc/
> The file/tty interfaces (apart from the man pages for read,...)?
http://www.oreilly.com/catalog/linuxdrive2/
(You can also read the boo
> everything else on the laptop is set to IRQ11. (well, enet, cardbus,
> video). I tried using setpci to change the USB irq to something unused
On many systems USB is an internal IRQ route, not configurable through PIRQ
at all, despite what the PIRQ table tells you.
Just a possibility.
___
On Saturday 29 September 2001 18:47, you wrote:
> No, I think it will be a daemon that talks to usb via libusb
> at one end and has a pty at the other.
BTW a nice way to write user space drivers with a special file interface in
/dev is to use FUSD:
http://www.circlemud.org/~jelson/software/fusd
On Mon, 2007-05-14 at 15:24 -0700, Pete Zaitcev wrote:
> Two remaining items are:
> - Tim Waugh's ENOSPC like in drivers/char/lp.c
This can probably be done by having write() return as in the O_NONBLOCK
case when it detects out-of-paper, and by having usblp_poll() mark the
file desc
I've compiled the usb_skeleton.c module and loaded this module.
I've managed to open a USB-device, but that's it.
How can I write a application that uses this module?
Can I only use the file-operations like (owner, read, write, open and
release)?
Is there a way to set the baudrate, get the vendor/
ct with this device? Anybody have an example in
C?
Is it good to use echo or stty in console to do a quick test if I can
read/write?
Thanks
Tim
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through lo
sb-ohci]ohci_mem_cleanup+24/60>
7: 31 c0 xor%eax,%eax
Code; d0d13136 <[usb-ohci]ohci_mem_cleanup+26/60>
9: 89 81 00 01 00 00 mov%eax,0x100(%ecx)
Code; d0d1313c <[usb-ohci]ohci_mem_cleanup+2c/60>
f: c7 44 24 0c 90 00 00 movl $0x
t* kernel?
Anyone have any ideas how I might be able to recover the (somewhat)
faster write speed while running a linux-2.6.0-test* kernel?
-Tim Shepard
---
This SF.net email is sponsored by: SF.net Giveback Program.
Do
* optimal.
I am happy to report that this patch has restored the write throughput
to the same speed that it was on linux-2.4.
Problem solved.Thanks much.
-Tim Shepard
---
This SF.net email is sponsored by: SF.net Giveback
the usb-ohci.c because the builtin OCHI does not sit
on a PCI bus.
In dmesg I also get the following messages, but I am
not sure if they are related to the problem:
usb.c: usb-check-bandwidth FAILED: was 697, would be
1378, bustime = 681 us
I w
Op Thu, 7 Dec 2006 17:03:50 -0500 (EST)
schreef Alan Stern <[EMAIL PROTECTED]>:
>
> In fact I don't even have any real evidence that the original problem
> exists on all A7V8X motherboards; it might exist only on the one
> board owned by Tim, the original reporter.
>
ce-0/foo.txt'? y
[EMAIL PROTECTED] herton]$ ls -l /mnt/usb-storage/device-0/
total 4
drwxrwxr-x 2 herton root 4096 2004-06-01 10:37 photo650/
---
Herton
@testes.conectiva
On Wed, Jun 16, 2004 at 03:20:41PM -0400, Alan Stern wrote:
> On Tue, 15 Jun 2004, Tim Becker wrote:
>
> >
I applied Alan's patch to jumpshot.c and unusual_devs.h and my Jumpshot CF reader works perfectly. Thanks again.
On Thu, 2004-06-17 at 14:03, Alan Stern wrote:
On Thu, 17 Jun 2004, Tim Becker wrote:
> Ahhh That worked The patch I had didn't change
> US_
; Unless everybody is just waiting for the next flamewar...
Yes, noted the original, but was out tonight. Congratulations and good work!!!
I wish I had a phillips cam to test it out on... I'll have to check which
makes and models and see if I can find something on ebay to test with...
tim
--
w if it's in the usb or acpi part. Anyway,
if you need more info let me know. For now I'll attach my lspci-vvv.
grts Tim
lspci-vvv.before
Description: Binary data
signature.asc
Description: PGP signature
On Sun, 12 Feb 2006 21:32:43 -0500 (EST)
Alan Stern <[EMAIL PROTECTED]> wrote:
> On Sun, 12 Feb 2006, Tim Dijkstra wrote:
>
> > Anyway, I tried to work around that problem by rmmod'ing uhci_hcd
> > before suspend, and modprobing afterwards. This seems to work except
On Sun, 12 Feb 2006 21:32:43 -0500 (EST)
Alan Stern <[EMAIL PROTECTED]> wrote:
> On Sun, 12 Feb 2006, Tim Dijkstra wrote:
>
> >
> > Anyway, I tried to work around that problem by rmmod'ing uhci_hcd
> > before suspend, and modprobing afterwards. This seems
recognized
when plugged in but a cat of js0 showed no activity. However if I used:
usbmodules --device /proc/bus/usb/xxx/yyy
it started working (thanks to Andrew Fuller for the fix).
Tim
---
This SF.net email is sponsored by: Splunk Inc. Do
38 matches
Mail list logo