<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX ProcessorsのトピックRe: Help with android Capsense</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322586#M43134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am a beginner. I'm sorry I didn't say it clear. I use a imx6 board now, and I have a ft5x06 touchscreen. The android version is 4.3. I add the ft5x06 driver to the kernel, compile it, and finally it seems to get work right. Unfornately there is a problem: &lt;SPAN style="font-weight: bold; font-size: 14px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;the driver shows a circular cursor&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt; on the screen and &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; font-size: 14px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;takes the finger movements as relative coordinates and moves the cursor&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;. It acts as a laptop touchpad. I googled it for a long time, found nothing useful until I found here. I suspect I should edit the imx6.mk as well, but I don't know how to do and why. That's my question. Could you give me some ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Mar 2016 01:47:58 GMT</pubDate>
    <dc:creator>zhanghuan</dc:creator>
    <dc:date>2016-03-08T01:47:58Z</dc:date>
    <item>
      <title>Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322580#M43128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to get a 7" touchscreen working in android with an IMX6 (technexion edm). The touch IC is from pixcir, and &lt;A href="http://lxr.free-electrons.com/source/drivers/input/touchscreen/pixcir_i2c_ts.c#L87"&gt;a driver exists for it in newer kernels&lt;/A&gt;, but not the 3.0.X used for android. I copied the driver into my kernel and got it to work by sligthy modifying the module interface parts. Andoird now sees the input device, and seems to understand the input from it.&lt;/P&gt;&lt;P&gt;see my original post: &lt;A href="http://forums.wandboard.org/viewtopic.php?f=8&amp;amp;t=559&amp;amp;start=0&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a&amp;amp;sid=12e7268b81bea24cf45869ad1f6767e6" title="http://forums.wandboard.org/viewtopic.php?f=8&amp;amp;t=559&amp;amp;start=0&amp;amp;st=0&amp;amp;sk=t&amp;amp;sd=a&amp;amp;sid=12e7268b81bea24cf45869ad1f6767e6"&gt;Wandboard Discussion Forums • View topic - Help with i2c PCAP panel&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's one problem, when I move my finger over the display it moves a relative cursor, like moving with a mouse (except when I use a mouse the cursor, a circle, turns into a mouse pointer). The touches aren't registered at their absolute position on display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I originally thought this might be due to the particular input events the driver registers, but this doesn't seem to be the case. I tried removing everything except ABS_MT_POSITION_X and ABS_MT_POSITION_Y, I also tried copying exactly what was done in the egalaxy and driver, where they register and report &lt;/P&gt;&lt;P class="line" style="padding-left: 10px;"&gt;&lt;SPAN class="n"&gt;ABS_MT_POSITION_X&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="padding-left: 10px;"&gt;&lt;SPAN class="n"&gt;ABS_MT_POSITION_Y&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="padding-left: 10px;"&gt;&lt;SPAN class="n"&gt;ABS_MT_TRACKING_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (I left this out as my driver doesnt )&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="padding-left: 10px;"&gt;&lt;SPAN class="n"&gt;ABS_X&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="padding-left: 10px;"&gt;&lt;SPAN class="n"&gt;ABS_Y&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="padding-left: 10px;"&gt;&lt;SPAN class="n"&gt;ABS_MT_TOUCH_MAJOR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;This does nothing except that when I run &lt;STRONG&gt;cat /proc/bus/input/devices &lt;/STRONG&gt;it is reported as both an event device and a mouse...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can confirm that the events being generated are in absolute coordinates. When I run &lt;CODE&gt;getevent -lt /dev/input/event1&lt;/CODE&gt; I get absolute x and y points that to go to roughly 0,0 in the top left corner, and roughly 1024,600 in the bottom left, which tells me that it probably doesnt need to be calibrated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know why the android system would not interpret these as absolute coordinates? the inly thing I can think is that its expecting a calibration file because the build I'm using originally worked with a resisitive display. However my andoird build does not appear to include tslib. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Jul 2014 23:21:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322580#M43128</guid>
      <dc:creator>kobusgoosen</dc:creator>
      <dc:date>2014-07-19T23:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322581#M43129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I read up about the andoid event structure and porting guide (&lt;A href="https://events.linuxfoundation.org/images/stories/slides/abs2013_zores_jellybean.pdf"&gt;here's&lt;/A&gt; a good doc for porting, and more info on&lt;A href="https://www.kernel.org/doc/Documentation/input/multi-touch-protocol.txt"&gt; the multi-touch input system&lt;/A&gt;), and found out I do actually need a file to tell the android system about the touch screen: I need to put an .idc file under system/usr/idc. I edited the imx6.mk file in the android device folder as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;device/technexion/common/input/Dell_Dell_USB_Keyboard.idc:system/usr/idc/Dell_Dell_USB_Keyboard.idc \&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;device/technexion/common/input/eGalax_Touch_Screen.idc:system/usr/idc/eGalax_Touch_Screen.idc \&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;device/technexion/common/input/eGalax_Touch_Screen.idc:system/usr/idc/HannStar_P1003_Touchscreen.idc \&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;device/technexion/common/input/eGalax_Touch_Screen.idc:system/usr/idc/Novatek_NT11003_Touch_Screen.idc \&lt;/P&gt;&lt;P&gt;device/technexion/common/input/eGalax_Touch_Screen.idc:system/usr/idc/pixcir-i2c-ts.idc \&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;device/technexion/common/input/eGalax_Touch_Screen.idc:system/usr/idc/prism.idc \&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;device/technexion/common/input/eGalax_Touch_Screen.idc:system/usr/idc/ADS7846_Touchscreen.idc \&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;device/technexion/imx6/etc/init.rc:root/init.rc \&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The eGalax file is increadibly basic, it just tells android its a multi-touch screen and doesnt need calibration...&lt;/P&gt;&lt;P&gt;unfortunately doesn't seem to have fixed the problem. is there any way of knowing if the IDC was correctly loaded to the correct input device?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jul 2014 23:30:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322581#M43129</guid>
      <dc:creator>kobusgoosen</dc:creator>
      <dc:date>2014-07-20T23:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322582#M43130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I managed to get this working. The problem was the .idc file not being loaded. It took me a while to figure out as I didn't realise my kernel and file android filesystem were being loaded from 2 different cards (the kernel booted from the card and the filesystem from the emmc).&lt;/P&gt;&lt;P&gt;The basic eGalax touch idc file works fine. I don't have multitouch yet, but this should be simple enough to get back. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2014 14:04:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322582#M43130</guid>
      <dc:creator>kobusgoosen</dc:creator>
      <dc:date>2014-07-23T14:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322583#M43131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've met the same problem, but I can't find the imx6.mk file, even not the imx6 file folder. I don't know why? Can you help me? Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 14:12:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322583#M43131</guid>
      <dc:creator>zhanghuan</dc:creator>
      <dc:date>2016-03-07T14:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322584#M43132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;device/fsl/common/input/Dell_Dell_USB_Keyboard.kl:system/usr/keylayout/Dell_Dell_USB_Keyboard.kl \&lt;/P&gt;&lt;P&gt;313&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/Dell_Dell_USB_Keyboard.idc:system/usr/idc/Dell_Dell_USB_Keyboard.idc \&lt;/P&gt;&lt;P&gt;314&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/eGalax_Touch_Screen.idc:system/usr/idc/eGalax_Touch_Screen.idc \&lt;/P&gt;&lt;P&gt;315&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/eGalax_Touch_Screen.idc:system/usr/idc/HannStar_P1003_Touchscreen.idc \&lt;/P&gt;&lt;P&gt;316&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/eGalax_Touch_Screen.idc:system/usr/idc/Novatek_NT11003_Touch_Screen.idc \&lt;/P&gt;&lt;P&gt;317&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/Dell_Dell_USB_Keyboard.idc:system/usr/idc/Dell_Dell_USB_Keyboard.idc \&lt;/P&gt;&lt;P&gt;318&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/eGalax_Touch_Screen.idc:system/usr/idc/eGalax_Touch_Screen.idc \&lt;/P&gt;&lt;P&gt;319&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/Goodix_Capacitive_TouchScreen.idc:system/usr/idc/Goodix_Capacitive_TouchScreen.idc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; \&lt;/P&gt;&lt;P&gt;320&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/HannStar_P1003_Touchscreen.idc:system/usr/idc/HannStar_P1003_Touchscreen.idc\&lt;/P&gt;&lt;P&gt;321&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/Novatek_NT11003_Touch_Screen.idc:system/usr/idc/Novatek_NT11003_Touch_Screen.idc \&lt;/P&gt;&lt;P&gt;322&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/qwerty.idc:system/usr/idc/qwerty.idc \&lt;/P&gt;&lt;P&gt;323&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/qwerty2.idc:system/usr/idc/qwerty2.idc \&lt;/P&gt;&lt;P&gt;324&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/input/TSC2007_Touchscreen.idc:system/usr/idc/TSC2007_Touchscreen.idc \&lt;/P&gt;&lt;P&gt;325&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/imx6/etc/init.rc:root/init.rc \&lt;/P&gt;&lt;P&gt;326&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/imx6/etc/apns-conf.xml:system/etc/apns-conf.xml \&lt;/P&gt;&lt;P&gt;327&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/imx6/etc/init.usb.rc:root/init.freescale.usb.rc \&lt;/P&gt;&lt;P&gt;328&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/imx6/etc/ueventd.freescale.rc:root/ueventd.freescale.rc \&lt;/P&gt;&lt;P&gt;329&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/imx6/etc/ppp/init.gprs-pppd:system/etc/ppp/init.gprs-pppd \&lt;/P&gt;&lt;P&gt;330&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/imx6/etc/ota.conf:system/etc/ota.conf \&lt;/P&gt;&lt;P&gt;331&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/display/display_mode_fb0.conf:system/etc/display_mode_fb0.conf \&lt;/P&gt;&lt;P&gt;332&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/display/display_mode_fb2.conf:system/etc/display_mode_fb2.conf \&lt;/P&gt;&lt;P&gt;333&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device/fsl/common/display/display_mode_fb4.conf:system/etc/display_mode_fb4.conf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above is my imx6.mk. How should I correct it? I don't know. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 14:30:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322584#M43132</guid>
      <dc:creator>zhanghuan</dc:creator>
      <dc:date>2016-03-07T14:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322585#M43133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to mention that my hardware/software is significantly different from when I posted&amp;nbsp; this. &lt;/P&gt;&lt;P&gt;I'd like to help, but I have no idea what hardware, screen or version of Android you are using. &lt;/P&gt;&lt;P&gt;Have you even confirmed that the touch screen is working? You should at least confirm that the kernel is correctly loading and seeing the touch screen before worrying about the idc&amp;nbsp; file. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 19:46:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322585#M43133</guid>
      <dc:creator>kobusgoosen</dc:creator>
      <dc:date>2016-03-07T19:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322586#M43134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am a beginner. I'm sorry I didn't say it clear. I use a imx6 board now, and I have a ft5x06 touchscreen. The android version is 4.3. I add the ft5x06 driver to the kernel, compile it, and finally it seems to get work right. Unfornately there is a problem: &lt;SPAN style="font-weight: bold; font-size: 14px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;the driver shows a circular cursor&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt; on the screen and &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; font-size: 14px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;takes the finger movements as relative coordinates and moves the cursor&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;. It acts as a laptop touchpad. I googled it for a long time, found nothing useful until I found here. I suspect I should edit the imx6.mk as well, but I don't know how to do and why. That's my question. Could you give me some ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 01:47:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322586#M43134</guid>
      <dc:creator>zhanghuan</dc:creator>
      <dc:date>2016-03-08T01:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322587#M43135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, that does sound like the problem I had back then...&lt;/P&gt;&lt;P&gt;I would say at this point you need to make sure the idc file is actually being copied. this should simple enough, just go into your output directory and browse to &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;system/usr/idc/ and see if the correct .idc file has been placed there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Then you also need to make sure your driver references one of the .idc files. If I remember correctly, the file has to have the exact name of the driver. So I would say copy eGalaxy_Touch.idc and rename it to &lt;/SPAN&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;A href="https://github.com/bayger/android_devices_amlogic/blob/master/g06refe4/ft5x06.idc" title="https://github.com/bayger/android_devices_amlogic/blob/master/g06refe4/ft5x06.idc"&gt;ft5x06.idc&lt;/A&gt;​&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Interestingly, the newer version of Android I'm using now (4.4 with kernel 3.10) doesn't seem to need this. I haven't bothered with the idc files after the upgrade and it just works. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 12:23:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322587#M43135</guid>
      <dc:creator>kobusgoosen</dc:creator>
      <dc:date>2016-03-08T12:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322588#M43136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, It works! I'm very grateful for your help. Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 14:31:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322588#M43136</guid>
      <dc:creator>zhanghuan</dc:creator>
      <dc:date>2016-03-08T14:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Help with android Capsense</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322589#M43137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am beginner, trying tointerface FT5316 based touchscreen to wandboard, and couldn't find a way to do i so far.&lt;/P&gt;&lt;P&gt;I have added FT5x06 driver to kernel, but not sure about the other change. Can you help me the steps I need to follow?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I have done so far.&lt;/P&gt;&lt;P&gt;I am using Marsh-mellow sources from wandboard.org and using i.mx6dl. Display is connected through HDMI and touchscreen through I2C channel 1 ( in kernel it is called as I2C2). i2cdetect -y 2 is detecting the Chip with address 0x38. Connected GPIO (3, 26) as interrupt and GPIO(6, 31) as reset, but not sure how to use these lines as interrupt and GPIO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 06:26:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Help-with-android-Capsense/m-p/322589#M43137</guid>
      <dc:creator>gpashok</dc:creator>
      <dc:date>2016-08-30T06:26:29Z</dc:date>
    </item>
  </channel>
</rss>

