<?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>topic Re: Display on IMXRT1176 in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1529646#M195750</link>
    <description>&lt;P&gt;Can you give an exact value of how much can be provided and exactly how to split RAM sizes in MCU IDE?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Sep 2022 16:01:09 GMT</pubDate>
    <dc:creator>Devaharsha</dc:creator>
    <dc:date>2022-09-28T16:01:09Z</dc:date>
    <item>
      <title>Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1525939#M195452</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created three tasks using Free RTOS, out of which one of the tasks is using images to be displayed from the sd-card to the display. For this, I have modified SD_JPEG example. Additionally, I want other tasks to use PXP driver code which uses a manual input buffer. I am facing an issue in adding SD_JPEG example with PXP driver code.&lt;/P&gt;&lt;P&gt;Could you please help me with it? [I am using IMXRT 1176]&lt;/P&gt;&lt;P&gt;My issues are:&lt;/P&gt;&lt;P&gt;1) If I run PXP task and then if I run SD_JPEG task, there's display fluctuation. So, If I disable PS and AS at the end of PXP code, before running other tasks, will this work?&lt;/P&gt;&lt;P&gt;2) Another reason I think this can be because I am giving different buffers in both codes (g_frameBuffer and s_BufferLcd). If this is an issue how can I solve it?&lt;/P&gt;&lt;P&gt;3) Is it compulsory to use decoding format as same, as in SD_JPEG example its using RGB888 format and in PXP example its using RGB565 format?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Devaharsha&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 14:47:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1525939#M195452</guid>
      <dc:creator>Devaharsha</dc:creator>
      <dc:date>2022-09-21T14:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1527062#M195525</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201385"&gt;@Devaharsha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can try to put buffer into noncacheable area.&lt;/P&gt;
&lt;P&gt;PXP can support&amp;nbsp; RGB888 and RGB565 input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 02:50:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1527062#M195525</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2022-09-23T02:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1527903#M195598</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/61241"&gt;@jingpan&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I tried putting buffer in NonCacheble region -&lt;/P&gt;&lt;P&gt;Modified "SDK_ALIGN(static uint8_t g_frameBuffer[APP_FB_NUM][APP_FB_SIZE_BYTE], APP_FB_ALIGN);" to "AT_NONCACHEABLE_SECTION_ALIGN(static uint8_t g_frameBuffer[APP_FB_NUM][APP_FB_SIZE_BYTE], APP_FB_ALIGN));"&lt;/P&gt;&lt;P&gt;While compiling, it says "Cache is overflowed". I tried modifying value of RAM2 in properties option. But I am getting Bus Fault error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the above method correct or I am doing something wrong? Can you help me with this.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 07:03:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1527903#M195598</guid>
      <dc:creator>Devaharsha</dc:creator>
      <dc:date>2022-09-26T07:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1528661#M195668</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201385"&gt;@Devaharsha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Obviously, OCRAM has not enough size for the buffer. You should split part of SDRAM to&amp;nbsp;NCACHE_REGION.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 08:29:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1528661#M195668</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2022-09-27T08:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1529646#M195750</link>
      <description>&lt;P&gt;Can you give an exact value of how much can be provided and exactly how to split RAM sizes in MCU IDE?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 16:01:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1529646#M195750</guid>
      <dc:creator>Devaharsha</dc:creator>
      <dc:date>2022-09-28T16:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1530097#M195775</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201385"&gt;@Devaharsha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Goto properties-&amp;gt;MCU Settings&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jingpan_0-1664430394950.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/195273i1A5600A99C92D1B4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jingpan_0-1664430394950.png" alt="jingpan_0-1664430394950.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 05:47:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1530097#M195775</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2022-09-29T05:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1530477#M195812</link>
      <description>&lt;P&gt;I have tried modifying RAM addresses as you have shown. There's no error in compiling.&lt;/P&gt;&lt;P&gt;1) First I am running sd_jpeg task, and it's working fine.&lt;/P&gt;&lt;P&gt;2) Then, I am running PXP driver, and it's working fine.&lt;/P&gt;&lt;P&gt;3) Again if the sd_jpeg task is getting run, I am getting PXP image and image from SD Card getting overlapped on the display. There's display fluctuation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 13:39:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1530477#M195812</guid>
      <dc:creator>Devaharsha</dc:creator>
      <dc:date>2022-09-29T13:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1530904#M195850</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;It seems the current display buffer is invaded when eLCDIF is reading it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 06:26:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1530904#M195850</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2022-09-30T06:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1532190#M195961</link>
      <description>&lt;P&gt;Is there any other way to run both PXP and JPEG SD code?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 14:46:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1532190#M195961</guid>
      <dc:creator>Devaharsha</dc:creator>
      <dc:date>2022-10-04T14:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Display on IMXRT1176</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1534387#M196126</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/201385"&gt;@Devaharsha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Sorry there isn't other examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Sun, 09 Oct 2022 06:02:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Display-on-IMXRT1176/m-p/1534387#M196126</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2022-10-09T06:02:18Z</dc:date>
    </item>
  </channel>
</rss>

