Tagged Questions
0
votes
0answers
56 views
Using libusb on Android without rooting
I am trying to communicate with USB device from Android-based smartphone via OTG. I was able to communicate with my device using Androiid USB Host API. The problem of USB Host API solution is ...
0
votes
1answer
106 views
USB permission error using libusb
I am trying to create a driver for a USB-to-DMX converter (Velleman VM116.)
The problem I have is that when I try to open the USB device and configure it it returns a error: Configurating USB failed: ...
0
votes
1answer
568 views
USB permission obtained via android.hardware.usb does not apply to NDK
I was able to obtain a permission to communicate with a device via Android's USB Host API.
private static final String ACTION_USB_PERMISSION = "com.android.example.USB_PERMISSION";
protected void ...
4
votes
1answer
423 views
Accessing a USB device with libusb-1.0 as a non-root user
I am trying to interface with a USB device as a non-root user on RHEL5. The device is a GPIO interface (its documentation can be found at http://www.xdimax.com/sub20/sub20.html) which uses ...
9
votes
2answers
4k views
How to give /dev/bus/usb permissions for libusb android applications?
i am developing an Application that uses libusb via jni.
this application is currently targeted only to rooted, usb-host
Android 3+ machines.
the scenario is as follows:
<java Activity>
...