Making work with a new device on Android is not so simple ... Android is not yet a universal OS, and its core is not identical to the kernel that we launch on the desktop.
Here are some suggestions:
After connecting the USB device, run "adb shell dmesg" to check if Linux has found the correct driver for you or not. I know that there is usbtouchscreen.c lying in the source tree of the kernel (driver / input / touch screen), but you must confirm that:
a. The driver itself supports your device.
b. The device on which Android runs compiled and linked this driver module.
I assume that you have already confirmed. For b, you can find out by listing all the related drivers from directories such as / sys / class / input / driver / ... and check if this particular driver exists.
After that, do an "adb logcat | grep EventHub" to find out if Android is satisfied with this input device. I think that if you can get the driver to work on Linux, there shouldnβt be too many problems for Android, because it just interacts with the kernel input from / dev / input / eventX node.
Good luck
source share