I want to generate mouse events (like clicking and moving the pointer) in an android application. I made a lot of researchs about this kind of implementations and finally I found that it is the only way to do this from arm assembly level. I will use jni to call c routines and those c routines will have inline arm assembly codes. But I have a problem about using interrupts in arm processor that generates mouse events. I know that in intel chipsets, "int 33h" interrupt handles the mouse events. Can someone help me about mouse function interrupts in arm processor and how to use it.
Thanks.