<?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 RT Crossover MCUsのトピックRe: IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2140018#M34809</link>
    <description>&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/233161"&gt;@Sam_Gao&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/252999"&gt;@Jack310West&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Current lvgl TASK Priority is less than SPI task Priority .&lt;BR /&gt;I have tried Changing Refresh rate and didn't find any significant Improvement .&lt;BR /&gt;in the freertos config We have Time Slicing enabled ,&amp;nbsp;preemption is also Enabled&lt;/P&gt;</description>
    <pubDate>Thu, 24 Jul 2025 09:08:04 GMT</pubDate>
    <dc:creator>Sreenath_P</dc:creator>
    <dc:date>2025-07-24T09:08:04Z</dc:date>
    <item>
      <title>IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139127#M34797</link>
      <description>&lt;P&gt;Facing issue while LVGL task and SPI task is running , the Data is lost if the LVGL task is running . if LVGL task is commented the SPI doesn't have a dataLoss . The SPI is running at 2 MHZ , We are using&amp;nbsp;&lt;SPAN&gt;LPSPI_SlaveTransferNonBlocking() .&amp;nbsp;&lt;BR /&gt;the SPI peripheral is configured as Transfer.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 07:53:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139127#M34797</guid>
      <dc:creator>Sreenath_P</dc:creator>
      <dc:date>2025-07-23T07:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139202#M34798</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;Your SPI data loss when LVGL is running, but not when LVGL is commented out, strongly indicates resource contention or CPU starvation. The LVGL task is likely consuming too many CPU cycles, preventing your SPI task or its interrupt service routine (ISR) from processing LPSPI_SlaveTransferNonBlocking() completions promptly. Increase your SPI task's priority above LVGL's, optimize LVGL's performance (e.g., reduce refresh rate, simplify UI), and ensure no critical sections in LVGL are disabling interrupts for too long. Temporarily reducing SPI clock speed can also help confirm if it's a throughput bottleneck.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 08:52:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139202#M34798</guid>
      <dc:creator>Jack310West</dc:creator>
      <dc:date>2025-07-23T08:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139362#M34804</link>
      <description>&lt;P&gt;by reducing Clock Speed it works better ,but 2 mhz is needed for our use case , any other suggestions, i tried reducing refresh rate and there is not much of difference&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 11:20:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139362#M34804</guid>
      <dc:creator>Sreenath_P</dc:creator>
      <dc:date>2025-07-23T11:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139956#M34807</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It is a reasonable avice to increase your SPI task's priority above LVGL's, or optimize LVGL's performance (e.g., reduce refresh rate, simplify UI), and ensure no critical sections in LVGL are disabling interrupts for too long.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 07:39:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2139956#M34807</guid>
      <dc:creator>Sam_Gao</dc:creator>
      <dc:date>2025-07-24T07:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2140018#M34809</link>
      <description>&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/233161"&gt;@Sam_Gao&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/252999"&gt;@Jack310West&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Current lvgl TASK Priority is less than SPI task Priority .&lt;BR /&gt;I have tried Changing Refresh rate and didn't find any significant Improvement .&lt;BR /&gt;in the freertos config We have Time Slicing enabled ,&amp;nbsp;preemption is also Enabled&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 09:08:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2140018#M34809</guid>
      <dc:creator>Sreenath_P</dc:creator>
      <dc:date>2025-07-24T09:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: IMX1170 EVKB - SPI communication dataloss Issue while Running LVGL task and SPI task in FreeRTOS</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2144383#M34860</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please refer to the &lt;A href="https://github.com/nxp-mcuxpresso/mcuxsdk-examples/tree/release/25.06.00/lvgl_examples" target="_self"&gt;offical lvgl examples&lt;/A&gt; to see if there are some performance issues based on the same hardware.&lt;/P&gt;
&lt;P&gt;Also, you can find how to &lt;A href="https://docs.nxp.com/bundle/GUIGUIDERUG_1.9.1/page/topics/performance.html" target="_self"&gt;improve performance&lt;/A&gt; if you use NXP GUI Guider tools for developement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 08:53:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMX1170-EVKB-SPI-communication-dataloss-Issue-while-Running-LVGL/m-p/2144383#M34860</guid>
      <dc:creator>Sam_Gao</dc:creator>
      <dc:date>2025-07-31T08:53:32Z</dc:date>
    </item>
  </channel>
</rss>

