<?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>S32K中的主题 Re: Programming data flash s32k3</title>
    <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766006#M29161</link>
    <description>&lt;P&gt;&lt;SPAN&gt;This is internal bare metal drivers, which was done before RTD was decided.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;In case you want official ones, the RTD are only available.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Nov 2023 00:25:46 GMT</pubDate>
    <dc:creator>Robin_Shen</dc:creator>
    <dc:date>2023-11-30T00:25:46Z</dc:date>
    <item>
      <title>Programming data flash s32k3</title>
      <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1765119#M29103</link>
      <description>&lt;P&gt;This is from AN13388.&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;register tFLASH_STATUS status = FLASH_PEG_ST;&lt;BR /&gt;register uint8_t *pDst = (uint8_t*)dst, *pSrc = (uint8_t*)src, *pTmp;&lt;BR /&gt;register uint32_t *pData;&lt;BR /&gt;uint32_t tmp;&lt;BR /&gt;while ((nbytes &amp;gt; 0L) &amp;amp;&amp;amp; (status &amp;amp; FLASH_PEG_ST))&lt;BR /&gt;{&lt;BR /&gt;pData = (uint32_t*)((uint32_t)&amp;amp;FLASH-&amp;gt;DATA[0] + ((uint32_t)pDst &amp;amp; FLASH_DATAX_MASK));&lt;BR /&gt;FLASH_InitSeq (pDst);&lt;BR /&gt;do {&lt;BR /&gt;tmp = 0xffffffffUL;&lt;BR /&gt;pTmp = (uint8_t*)((uint32_t)&amp;amp;tmp + ((uint32_t)pDst &amp;amp; FLASH_BYTES_MASK));&lt;BR /&gt;do {&lt;BR /&gt;*pTmp++ = *pSrc++; pDst++;&lt;BR /&gt;} while ((nbytes-- &amp;gt; 0L) &amp;amp;&amp;amp; ((uint32_t)pTmp &amp;amp; FLASH_BYTES_MASK));&lt;BR /&gt;*pData++ = tmp;&lt;BR /&gt;} while ((nbytes &amp;gt; 0L) &amp;amp;&amp;amp; ((uint32_t)pData &amp;amp; FLASH_DATAX_MASK));&lt;BR /&gt;status = FLASH_ExecSeq (FLASH_MCR_PGM_MASK);&lt;BR /&gt;}&lt;BR /&gt;return&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I couldn't find reference to&amp;nbsp;FLASH_BYTES_MASK and&amp;nbsp;FLASH_DATAX_MASK. Any thoughts?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 18:27:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1765119#M29103</guid>
      <dc:creator>vusal</dc:creator>
      <dc:date>2023-11-28T18:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Programming data flash s32k3</title>
      <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1765315#M29115</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Sorry for the inconvenience we bring you!&amp;nbsp;&lt;BR /&gt;It seems to be the code in the flash_test project of S32K3xxDRV_r1.4.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="FLASH_BYTES_MASK FLASH_DATAX_MASK.png" style="width: 954px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/252014i3D874D99CB11AD89/image-size/large?v=v2&amp;amp;px=999" role="button" title="FLASH_BYTES_MASK FLASH_DATAX_MASK.png" alt="FLASH_BYTES_MASK FLASH_DATAX_MASK.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Robin&lt;BR /&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;- 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;</description>
      <pubDate>Wed, 29 Nov 2023 01:59:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1765315#M29115</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-11-29T01:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Programming data flash s32k3</title>
      <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1765727#M29154</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/57959"&gt;@Robin_Shen&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thank you very much for this. This answers my question.&lt;BR /&gt;&lt;BR /&gt;One more thing, I couldn't find&amp;nbsp;&lt;SPAN&gt;S32K3xxDRV_r1.4 example project in my IDE. Any thoughts?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 13:44:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1765727#M29154</guid>
      <dc:creator>vusal</dc:creator>
      <dc:date>2023-11-29T13:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Programming data flash s32k3</title>
      <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766006#M29161</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This is internal bare metal drivers, which was done before RTD was decided.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;In case you want official ones, the RTD are only available.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 00:25:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766006#M29161</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2023-11-30T00:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Programming data flash s32k3</title>
      <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766547#M29199</link>
      <description>Thank you!</description>
      <pubDate>Thu, 30 Nov 2023 14:01:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766547#M29199</guid>
      <dc:creator>vusal</dc:creator>
      <dc:date>2023-11-30T14:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Programming data flash s32k3</title>
      <link>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766646#M29204</link>
      <description>&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/57959"&gt;@Robin_Shen&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Any chance &lt;SPAN&gt;flash_test project&amp;nbsp;&lt;/SPAN&gt;available online?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 16:57:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Programming-data-flash-s32k3/m-p/1766646#M29204</guid>
      <dc:creator>vusal</dc:creator>
      <dc:date>2023-11-30T16:57:33Z</dc:date>
    </item>
  </channel>
</rss>

