arl: projects: patcheria: jusb_patcheria
[this]
[up]
[top]
[en]
[fi]
[response]
[style]
JUSB patches.
2003-02-21 for JUSB at least version CVS 2003-02-21
in file src/usb/core/Interface.java
Change from:
new Endpoint [getU8 (4)]
to:
new Endpoint [getU8 (4)+1]
Why?
If getU8( 4 ) returns 0, USB definition says there are 1 (one) endpoint.
How Noticed?
While coding support for USB Cameras (withing aow framework) STM STV0680 returns zero endpoints.
Need to check
Should it be
getU8( 4 ) == 0 ? 1 : getU8( 4 )
.
©
arl
updated:
20070711