<?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: Touch issue on i.MX6 Android Dual display</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691302#M107090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I noticed that your issue was already internally escalated, please wait answer&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/452002"&gt;https://community.nxp.com/thread/452002&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 May 2017 23:32:53 GMT</pubDate>
    <dc:creator>igorpadykov</dc:creator>
    <dc:date>2017-05-26T23:32:53Z</dc:date>
    <item>
      <title>Touch issue on i.MX6 Android Dual display</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691301#M107089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on i.MX6Q SARBE AI board with HDMI and LVDS display.&lt;/P&gt;&lt;P&gt;I have made change to "6x_bootscript_android.txt" to make HDMI as primary screen.&lt;/P&gt;&lt;P&gt;But after the change if i touch on HDMI screen the contents on LVDS is getting changed. The touch input from HDMI is going to the contents of LVDS.&lt;/P&gt;&lt;P&gt;Do i need to do some other modification in case we change primary display , &amp;nbsp;please help ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Modified "6x_bootscript_android.txt" :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;${dtype} dev ${disk}&lt;/P&gt;&lt;P&gt;setenv bootargs enable_wait_mode=off&lt;BR /&gt;setenv nextcon 0;&lt;BR /&gt;setenv bootargs $bootargs console=ttymxc1,115200 vmalloc=400M consoleblank=0 ;&lt;/P&gt;&lt;P&gt;if hdmidet ; then&lt;BR /&gt; setenv bootargs $bootargs video=mxcfb${nextcon}:dev=hdmi,1280x720M@60,if=RGB24&lt;BR /&gt; if test "0" -eq $nextcon; then&lt;BR /&gt; setenv fbcon "fbcon=28M";&lt;BR /&gt; else&lt;BR /&gt; setenv fbcon ${fbcon},28M&lt;BR /&gt; fi&lt;BR /&gt; setexpr nextcon $nextcon + 1&lt;BR /&gt;else&lt;BR /&gt; echo "------ no HDMI monitor";&lt;BR /&gt;fi&lt;/P&gt;&lt;P&gt;i2c dev 2&lt;/P&gt;&lt;P&gt;if i2c probe 0x04 ; then&lt;BR /&gt; setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,LDB-XGA,if=RGB666&lt;BR /&gt; if test "0" -eq $nextcon; then&lt;BR /&gt; setenv fbcon "fbcon=10M";&lt;BR /&gt; else&lt;BR /&gt; setenv fbcon ${fbcon},10M&lt;BR /&gt; fi&lt;BR /&gt; setexpr nextcon $nextcon + 1&lt;BR /&gt;else&lt;BR /&gt; echo "------ no Freescale display";&lt;BR /&gt;fi&lt;/P&gt;&lt;P&gt;if i2c probe 0x38 ; then&lt;BR /&gt; setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,1024x600M@60,if=RGB666&lt;BR /&gt; if test "0" -eq $nextcon; then&lt;BR /&gt; setenv fbcon "fbcon=10M";&lt;BR /&gt; else&lt;BR /&gt; setenv fbcon ${fbcon},10M&lt;BR /&gt; fi&lt;BR /&gt; setexpr nextcon $nextcon + 1&lt;BR /&gt;else&lt;BR /&gt; echo "------ no 1024x600 display";&lt;BR /&gt;fi&lt;/P&gt;&lt;P&gt;if i2c probe 0x48 ; then&lt;BR /&gt; setenv bootargs $bootargs video=mxcfb${nextcon}:dev=lcd,CLAA-WVGA,if=RGB666 tsdev=tsc2004 calibration&lt;BR /&gt; if test "0" -eq $nextcon; then&lt;BR /&gt; setenv fbcon "fbcon=10M";&lt;BR /&gt; else&lt;BR /&gt; setenv fbcon ${fbcon},10M&lt;BR /&gt; fi&lt;BR /&gt; setexpr nextcon $nextcon + 1&lt;BR /&gt;else&lt;BR /&gt; echo "------ no 800x480 display";&lt;BR /&gt;fi&lt;/P&gt;&lt;P&gt;while test "3" -ne $nextcon ; do&lt;BR /&gt; setenv bootargs $bootargs video=mxcfb${nextcon}:off ;&lt;BR /&gt; setexpr nextcon $nextcon + 1 ;&lt;BR /&gt;done&lt;/P&gt;&lt;P&gt;setenv bootargs $bootargs fbcon=$fbcon&lt;BR /&gt;${fs}load ${dtype} ${disk}:1 10800000 uImage &amp;amp;&amp;amp; ${fs}load ${dtype} ${disk}:1 12800000 uramdisk.img &amp;amp;&amp;amp; bootm 10800000 12800000&lt;BR /&gt;echo "Error loading kernel image"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2017 07:48:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691301#M107089</guid>
      <dc:creator>kirangv</dc:creator>
      <dc:date>2017-05-24T07:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Touch issue on i.MX6 Android Dual display</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691302#M107090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I noticed that your issue was already internally escalated, please wait answer&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/452002"&gt;https://community.nxp.com/thread/452002&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 23:32:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691302#M107090</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2017-05-26T23:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Touch issue on i.MX6 Android Dual display</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691303#M107091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok ,Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 10:32:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Touch-issue-on-i-MX6-Android-Dual-display/m-p/691303#M107091</guid>
      <dc:creator>kirangv</dc:creator>
      <dc:date>2017-05-29T10:32:30Z</dc:date>
    </item>
  </channel>
</rss>

