[android-porting] Re: inverted touch on ads7846 chip

2016-06-08 Thread Sarath AK
HI, I need a help to solve touch panel problem, I new to android os. I am facing an issue in* ADS7876 Touchpanal* in* Android 4.4 with Kernel 4.1 *, i connected it with AM335x Beaglebone Black working fine , and it initialized fine with this kernel. my board sense the in interrupt and genera

[android-porting] Re: inverted touch on ads7846 chip

2008-12-04 Thread Maxime Petazzoni
Hi, You need to invert the READ_X and READ_Y calls in drivers/input/ touchscreen/ads7846.c for the ts->read_x and ts->read_y values. This is a well known OmapZoom issue with Android. - Maxime On Dec 4, 8:42 am, Manav Gautama <[EMAIL PROTECTED]> wrote: > Dear droidans, >                    I hav

[android-porting] Re: inverted touch on ads7846 chip

2009-01-13 Thread Kai Wei
Hi, How can I get calibration with android? The value returned by driver seemed too big to be used directly. On Dec 5 2008, 3:30 am, Maxime Petazzoni wrote: > Hi, > > You need to invert the READ_X and READ_Y calls in drivers/input/ > touchscreen/ads7846.c for the ts->read_x and ts->read_y values

[android-porting] Re: inverted touch on ads7846 chip

2009-01-15 Thread vishal bhoj
hi, TOuch screen is not working for me on omapzoom. when i run pointer location i don get any values there. when i touch only the top time & date bar slides down and goes back. what has to be changed to get touch screen working in android on omap3evm On Tue, Jan 13, 2009 at 8:37 AM, Kai Wei wrot

[android-porting] Re: inverted touch on ads7846 chip

2009-01-15 Thread vishal bhoj
when i did a logcat i get Starting input on non-focused client com.android.internal.view.iinputmethodclient$stub$pr...@4) D/InputManagerService( 554): hide the small icon for the input method W/InputManagerService( 554): Ignoring focus gain of: android.view.inputmethod.inputmethodmanage...@435b5

[android-porting] Re: inverted touch on ads7846 chip

2009-01-16 Thread Qingzhan Zhang
in your touch driver ,you should set the x/y/pressure's MAX value and MIN value,the android according to the MAX and MIN value to calculate your inputing values On Thu, Jan 15, 2009 at 4:34 PM, vishal bhoj wrote: > when i did a logcat i get > Starting input on non-focused client > com.android.i

[android-porting] Re: inverted touch on ads7846 chip

2009-01-20 Thread pramod
hi all, We have ported android on the ARM9 based board. We are able to see the home page after booting android on target. But the touch screen is not working. The touch screen driver is modified to pass the of X,Y pressure as shown below. xtmp = (axis_table[2] + axis_table[0]*

[android-porting] Re: inverted touch on ads7846 chip

2009-01-20 Thread Qingzhan Zhang
when you init your touch driver,you should set some params as below input_set_abs_params(codec_ts_input, ABS_X, X_MIN, X_MAX, 0, 0); input_set_abs_params(codec_ts_input, ABS_Y, Y_MIN, Y_MAX, 0, 0); input_set_abs_params(codec_ts_input, ABS_PRESSURE, PRESSURE_MIN, PRESSURE_MAX

[android-porting] Re: inverted touch on ads7846 chip

2009-01-20 Thread pramod
hi init of touch screen driver already has the code mentioned by you. i am passing the MIN and MAX values for x,y and pressure as shown below.. #define ADC_MAX ((1 << 12) - 1) input_set_abs_params(data->idev, ABS_X, 0, ADC_MAX, 0, 0); input_set_abs_params(data->idev, ABS_Y, 0, ADC_MAX, 0,

[android-porting] Re: inverted touch on ads7846 chip

2009-01-26 Thread AJAY
Hi Vishal, I too am facing the same issue with Touchscreen.On touching the touchcreen at any location the top time & date bar slides. How did you resolve this issue ? Thanks Ajay > down and goes back On Jan 15, 1:31 pm, "vishal bhoj" wrote: > hi, > > TOuch screen is not working for me on o

[android-porting] Re: inverted touch on ads7846 chip

2009-01-27 Thread Patrick Heeb
Hi, the input framework depends on a working power driver. without an enabled android power driver, the framework will not handle the input-events correctly and constantly report x=0,y=0 as the location of the touch event. so either enable the android power driver in the kernel, or dig yourself i

[android-porting] Re: inverted touch on ads7846 chip

2009-01-27 Thread AJAY
Hi Patrick, Thanks for the response . I have PM disabled in the kernel . Will checkout enabling it. Thanks Ajay On Jan 27, 1:38 pm, Patrick Heeb wrote: > Hi, > > the input framework depends on a working power driver. > without an enabled android power driver, the framework will not > handle th

[android-porting] Re: inverted touch on ads7846 chip

2009-01-28 Thread virstud
I have whis problem too. repo sync kernel 2.6.27 pxafb work. enable android power drv, PM drv keypad work. spi driver work. ads7846 (tsc2046) work. On touching the touchcreen at any location the top time & date bar slides. How did you resolve? help please On 27 янв, 12:21, AJAY wrote: > Hi

[android-porting] Re: inverted touch on ads7846 chip

2009-01-28 Thread girish
the cupcake power should be properly enabled in kernel space. 2009/1/28 virstud > > I have whis problem too. > repo sync kernel > 2.6.27 > pxafb work. > enable android power drv, PM drv > keypad work. > spi driver work. > ads7846 (tsc2046) work. > On touching the > touchcreen at any location th

[android-porting] Re: inverted touch on ads7846 chip

2009-01-28 Thread virstud
cd mydroid grep -R cupcake ./ not result What is cupcake? And how it is linked with ads7846? On 28 янв, 21:15, girish wrote: > the cupcake power should be properly enabled in kernel space. > > 2009/1/28 virstud > > > > > I have whis problem too. > > repo sync kernel > > 2.6.27 > > pxafb work.

[android-porting] Re: inverted touch on ads7846 chip

2009-01-29 Thread virstud
help On 28 янв, 21:15, girish wrote: > the cupcake power should be properly enabled in kernel space. > > 2009/1/28 virstud > > > > > I have whis problem too. > > repo sync kernel > > 2.6.27 > > pxafb work. > > enable android power drv, PM drv > > keypad work. > > spi driver work. > > ads7846 (t

[android-porting] Re: inverted touch on ads7846 chip

2009-02-02 Thread AJAY
Yes the problem got solved enabling Android PM module in Kernel. On Jan 30, 3:23 am, virstud wrote: > help > > On 28 янв, 21:15, girish wrote: > > > the cupcake power should be properly enabled in kernel space. > > > 2009/1/28 virstud > > > > I have whis problem too. > > > repo sync kernel > >

[android-porting] Re: inverted touch on ads7846 chip

2009-02-17 Thread virstud
i solved whis problem replase ads7846.c --> loox720_spi_ads7846.c(enable auto scale - comment ifdef CONFIG_LOOX720_ADS7846_AUTOCAL) and edit my mod looxc550.c spi ts init section get loox720_spi_ads7846.c: http://4pda.ru/forum/index.php?showtopic=80918&view=findpost&p=2426808 or svn co svn://s

[android-porting] Re: inverted touch on ads7846 chip

2009-02-25 Thread virstud
http://4pda.ru/forum/index.php?showtopic=80918&view=findpost&p=2453267 resolv problem - android power management driver in 2.6.27 - /cupcake/ kernel/kernel/power On 18 фев, 10:41, virstud wrote: > i solved whis problem > replaseads7846.c  -->  loox720_spi_ads7846.c(enable auto scale - > comment