What is the proper way to close a connection to a UsbAccessory in Android? It seems the even in the stock Google example, if I connect and accessory, exit the app and then go back to it, the connection is not re-established.

Looking closely, it seems that after calling close() on the FileDescriptor, it won't open again, and a "could not open /dev/usb_accessory" log is emitted. NOT calling close() is a bad option, as a thread blocking on read() will not be released. Upon physical disconnection / reconnection of the device everything is OK.

It seems really surprising that the simple use-case of exiting the app and then opening it again does not work in the reference application and even more surprising if it is not feasible.

I'm using a Nexus S running stock Android 2.3.6.

link|improve this question
feedback

1 Answer

The problem is that the reading thread never exits, thus the file descriptor stays open, and cannot be opened again when the app is resumed.

This has been confirmed to be a bug: http://code.google.com/p/android/issues/detail?id=20545

Vote on this bug if you care about it.

link|improve this answer
Yeah great, I like those Bugs :( How did you circumvent this issue? Any workaround you were applying? – GeneSys Apr 11 at 7:51
The way I worked around it is by sending a "soft close" command from the Android, which results in a "soft close" command back from the accessory to the Android, which in turn unblocks the read(). It will only work if the application exists gracefully and it the protocol doesn't lose sync. In practice, it is not perfect, but better than nothing. – Ytai Apr 11 at 15:35
Thanks! I think that's also the way I'll implement it. – GeneSys Apr 11 at 21:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.