Dear Ruckuus:
Sorry :( Right now, I don't have any real hardware to test
my new mxc_ts.c. and also do
some tests for rotating the LCD. But you can goto
http://androidzaurus.seesaa.net to
found out where to modify. He also provide some utility to
do this job. I think you have
to swap the x and y value.
from
input_set_abs_params(mxc_inputdev, ABS_X, X_AXIS_MIN,
X_AXIS_MAX, 0, 0);
input_set_abs_params(mxc_inputdev, ABS_Y, Y_AXIS_MIN,
Y_AXIS_MAX, 0, 0);
to
input_set_abs_params(mxc_inputdev, ABS_X, Y_AXIS_MIN,
Y_AXIS_MAX, 0, 0);
input_set_abs_params(mxc_inputdev, ABS_Y, X_AXIS_MIN,
X_AXIS_MAX, 0, 0);
and
from
input_report_abs(mxc_inputdev, ABS_X, ts_sample.x_position);
input_report_abs(mxc_inputdev, ABS_Y, ts_sample.y_position);
to
input_report_abs(mxc_inputdev, ABS_X, ts_sample.y_position);
input_report_abs(mxc_inputdev, ABS_Y, ts_sample.x_position);
BTW, would you like to share how to solve the flicking
problem?
I'm very wondering to know.
Best Regards,
Akio
PS: I have a idea to collect all patches about i.mx31 and i.mx27.
may be I can talk about this to Freescale, Taiwan. And hope
the next released bsp contained those patches.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Android Internals" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-internals?hl=en
-~----------~----~----~----~------~----~------~--~---