I saw in the USB cables thread that someone else was getting lockup when trying to access a jukebox (I'll assume that's an MP3 player). Maybe this is something similair? I've been adding printf statements to the usb applications to try and get input on where the crash is occurring. Here's where I think the crash happens.
CODE
int usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size,
int timeout)
{
/* Ensure the endpoint address is correct */
return usb_interrupt_transfer(dev, ep & ~USB_ENDPOINT_IN, bytes, size,
timeout);
}
int timeout)
{
/* Ensure the endpoint address is correct */
return usb_interrupt_transfer(dev, ep & ~USB_ENDPOINT_IN, bytes, size,
timeout);
}
crashes the system. Whazzup with that?
Thanks for your help, Zaurus experts!