<?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 RT1050 QSPI flash change to Winbond W25Q32JV (3.3V) in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904534#M3024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to use QSPI flash Winbond W25Q32JV instead of IS25WP064A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) how to get the flash driver .cfx file?&lt;/P&gt;&lt;P&gt;2) where to get the flash config define?&lt;/P&gt;&lt;P&gt;const flexspi_nor_config_t qspiflash_config&lt;/P&gt;&lt;P&gt;3) Does mfgtool support Winbond QSPI flash? Do I need to modify anything?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 May 2019 03:46:08 GMT</pubDate>
    <dc:creator>felix1</dc:creator>
    <dc:date>2019-05-23T03:46:08Z</dc:date>
    <item>
      <title>RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904534#M3024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to use QSPI flash Winbond W25Q32JV instead of IS25WP064A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) how to get the flash driver .cfx file?&lt;/P&gt;&lt;P&gt;2) where to get the flash config define?&lt;/P&gt;&lt;P&gt;const flexspi_nor_config_t qspiflash_config&lt;/P&gt;&lt;P&gt;3) Does mfgtool support Winbond QSPI flash? Do I need to modify anything?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2019 03:46:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904534#M3024</guid>
      <dc:creator>felix1</dc:creator>
      <dc:date>2019-05-23T03:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904535#M3025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" data-avatarid="-1" data-content-finding="Community" data-userid="340883" data-username="felix@portalinks.com.tw" href="https://community.nxp.com/people/felix@portalinks.com.tw"&gt;Felix Shih&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Answer your 3 questions:&lt;/P&gt;&lt;P&gt;1) how to get the flash driver .cfx file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; We don't have the specific .cfx file for W25Q32jv, you can try the IS25WP064A .cfx.&lt;/P&gt;&lt;P&gt;2) where to get the flash config define?&lt;/P&gt;&lt;P&gt;const flexspi_nor_config_t qspiflash_config&lt;/P&gt;&lt;P&gt;&amp;nbsp; You don't to modify the flexspi_nor_config_t qspiflash_config. Because the read LUT is the same as IS25WP064A.&lt;/P&gt;&lt;P&gt;&amp;nbsp; But, I think you can run this SDK code:&lt;/P&gt;&lt;P&gt;SDK_2.5.1_EVKB-IMXRT1050\boards\evkbimxrt1050\driver_examples\flexspi\nor\polling_transfer&lt;/P&gt;&lt;P&gt;&amp;nbsp; And modify the QE code like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;status_t flexspi_nor_enable_quad_mode(FLEXSPI_Type *base)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flexspi_transfer_t flashXfer;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status_t status;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; uint32_t writeValue = &lt;STRONG&gt;0x0200&lt;/STRONG&gt;;//0x40;// enable bit 9 in the status, it is QE bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Write enable */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = flexspi_nor_write_enable(base, 0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (status != kStatus_Success)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return status;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable quad mode. */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.deviceAddress = 0;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.port = kFLEXSPI_PortA1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.cmdType = kFLEXSPI_Write;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.SeqNumber = 1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.seqIndex = NOR_CMD_LUT_SEQ_IDX_WRITESTATUSREG;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.data = &amp;amp;writeValue;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashXfer.dataSize = 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = FLEXSPI_TransferBlocking(base, &amp;amp;flashXfer);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (status != kStatus_Success)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return status;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status = flexspi_nor_wait_bus_busy(base);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return status;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;As you know, the Winbond QSPI QE bit is S9&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/83999iC42E507F5C66C751/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is different with IS25WP064A.&lt;/P&gt;&lt;P&gt;You also need to erase sector, in the customLUT array, you need to change the 0xD7 for 0x20.&lt;/P&gt;&lt;P&gt;You can also change the size with 0x52 for 32KB or 0xD8 for 64KB block erase.&lt;/P&gt;&lt;P&gt;3) Does mfgtool support Winbond QSPI flash? Do I need to modify anything?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; yes, mfgtool can support winond QSPI flash, you just need to select the program_flexspinor_image_qspinor_status_reg2_bit1.bd , choose the correct QE bit, it can be found in the RT1050 flashloader folder: Flashloader_i.MXRT1050_GA\Flashloader_RT1050_1.1\Tools\bd_file\imx10xx&lt;/P&gt;&lt;P&gt;&amp;nbsp; BTW, I highly recommend you use our new tool, MCUBOOTutility, which can be downloaded from this link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/JayHeng/NXP-MCUBootUtility/releases/tag/v1.4.0"&gt;https://github.com/JayHeng/NXP-MCUBootUtility/releases/tag/v1.4.0 &lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can find the user manual from this link:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/JayHeng/NXP-MCUBootUtility" title="https://github.com/JayHeng/NXP-MCUBootUtility"&gt;GitHub - JayHeng/NXP-MCUBootUtility: A one-stop utility tool based on Python2.7+wxPython4.0, it can help you get started…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This tool can support winbond QSPI FLASH directly, and it is easy to use.&lt;/P&gt;&lt;P&gt;You just need to configure the device configuration like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_6.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/84000i471111B273C0F832/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_6.png" alt="pastedImage_6.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try it on your side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still have question about it, please kindly let me know.&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2019 09:46:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904535#M3025</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2019-05-28T09:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904536#M3026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Can I use MIMXRT1050_SFDP_QSPI.cfx instead of IS25WP064A.cfx? From driver file name, it seems a general purpose QSPI flash driver.&lt;BR /&gt;2) "You can also change the size with 0x52 for 32KB or 0xD8 for 64KB block erase."&lt;BR /&gt;Do you mean in the customLUT array? Can you show me which LUT command need to change?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2019 10:25:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904536#M3026</guid>
      <dc:creator>felix1</dc:creator>
      <dc:date>2019-06-12T10:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904537#M3027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Felix Shih,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1) Yes, the MIMXRT1050_SFDP_QSPI.cfx is the general purpose QSPI flash driver, you can try it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2) Yes, it is the customLUT array, please check the following picture:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/86883i0124D3A73D622E3E/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try it on your side.&lt;/P&gt;&lt;P&gt;If you still have question about it, please kindly let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2019 01:38:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904537#M3027</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2019-06-13T01:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904538#M3028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One small thing to change on this, when writing to both status 1 and status 2 registers in &lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;flexspi_nor_enable_quad_mode()&lt;/SPAN&gt;, increase the dataSize to 2.&lt;/P&gt;&lt;P&gt;From this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;flashXfer.dataSize = 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;To this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;flashXfer.dataSize = 2;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2019 02:35:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904538#M3028</guid>
      <dc:creator>paul_argue</dc:creator>
      <dc:date>2019-08-05T02:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904539#M3029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Felix &amp;amp; Kerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working on the same topic. We like to use the Winbound WS25Q128FW. This is the same family, simply this one is 1.8V (same as original IS25WP064AJBLE) and is 128Mbits. When flashing using the flashloader and the "blhost" command, i always run into the "kStatus_FlexSPINOR_SFDP_NotFound" error . It seems that this errors means that the device does not response to the "Read SFDP" command 0x5A. I've confirmed this using a logic analyser: The&amp;nbsp;&lt;SPAN&gt;WS25Q128FW device does not output any data upon 0x5A commands from the Flashloader.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; Felix did you encounter&amp;nbsp;the same ? Any suggestions ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2019 13:31:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904539#M3029</guid>
      <dc:creator>antoinezen</dc:creator>
      <dc:date>2019-10-21T13:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904540#M3030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antoine,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;sorry, I did not meet the same issue with Winbond W25Q32JV (3.3V). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe NXP FAE Kerry can help you to solve it.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2019 03:03:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904540#M3030</guid>
      <dc:creator>felix1</dc:creator>
      <dc:date>2019-10-22T03:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: RT1050 QSPI flash change to Winbond W25Q32JV (3.3V)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904541#M3031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="325001" data-username="antoinezen" href="https://community.nxp.com/people/antoinezen"&gt;Antoine Zen-Ruffinen&lt;/A&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Could you please create a new question post about your question, then we can help you in your own question post, if you want I provide service for you, you can @ kerry zhou in your post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Please also tell me what's the board you are using, your own boar or the official board, more details, we can talk it in your own post!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2019 03:29:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/RT1050-QSPI-flash-change-to-Winbond-W25Q32JV-3-3V/m-p/904541#M3031</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2019-10-24T03:29:10Z</dc:date>
    </item>
  </channel>
</rss>

