Maybe you can trial to change your driver to generate input events like below: (EV_ABS, 0x0000, 0x0189) - 0x0000 means "ABS_X" (X axes), 0x0189 the absolute X value of pen point (EV_ABS, 0x0001, 0x001c) - 0x0001 means "ABS_Y" (Y axes), 0x001c the absolute Y value of pen point (EV_KEY, 0x014a, 0x0001) - 0x014a means "BTN_TOUCH" , 0x0001 means "pressing" (0x0000, 0x0000, 0x0000) - sync event, no meaning, will be ignored (EV_ABS, 0x0000, 0x0200) - pen is moving to another point with different X (EV_ABS, 0x0001, 0x0025) - pen is moving to another point with different Y ... (EV_ABS, 0x0000, 0x0287) (EV_ABS, 0x0000, 0x0053) (EV_KEY, 0x014a, 0x0000) - Here pen leave off the screen. 0x0000 means "up" (0x0000, 0x0000, 0x0000)
On Jun 12, 7:26 pm, xro <[email protected]> wrote: > nobody have an idea??? > > i use a tsc2102 touchscreen... the driver is the 210x_ts and it use > the tslib.... > > please help me! --~--~---------~--~----~------------~-------~--~----~ unsubscribe: [email protected] website: http://groups.google.com/group/android-porting -~----------~----~----~----~------~----~------~--~---
