<?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: K82 VBAT Register File size in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1722257#M65540</link>
    <description>&lt;P class="lia-align-justify"&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/83989"&gt;@deniscollis&lt;/a&gt;,&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;After double check, &lt;A href="https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/k-series-arm-cortex-m4/k8x-secure/kinetis-k82-150-mhz-hw-cryptographic-co-processor-and-quadspi-microcontrollers-mcus-based-on-arm-cortex-m4-core:K82_150?_gl=1*1o8slk3*_ga*MzY3NDI0NjkyLjE2OTQyMDQ2NTI.*_ga_WM5LE0KMSH*MTY5NDIwNDY1Mi4xLjEuMTY5NDIwNjIzNC4wLjAuMA.." target="_blank"&gt;K82 Sub-Family Reference Manual&lt;/A&gt;&amp;nbsp;information is correct. We have already reported this issue to the team in charge of the SDK.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Thanks again for your feedback.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Best regards, Raul.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Sep 2023 18:03:38 GMT</pubDate>
    <dc:creator>RaRo</dc:creator>
    <dc:date>2023-09-13T18:03:38Z</dc:date>
    <item>
      <title>K82 VBAT Register File size</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1718176#M65522</link>
      <description>&lt;P&gt;According to the documentation&amp;nbsp; the VBAT register file is 128 bytes:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deniscollis_0-1694020943609.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/239859iDEE9B6CC9BFE92AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deniscollis_0-1694020943609.png" alt="deniscollis_0-1694020943609.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, the MCU descriptor header file (MK82F25615.h) in MCUXpresso defines it as 8 * 4 = 32 bytes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;typedef struct {
__IO uint32_t REG[8]; /**&amp;lt; VBAT register file register, array offset: 0x0, array step: 0x4 */
} RFVBAT_Type;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is it?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Denis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 17:05:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1718176#M65522</guid>
      <dc:creator>deniscollis</dc:creator>
      <dc:date>2023-09-08T17:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: K82 VBAT Register File size</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1718192#M65523</link>
      <description>&lt;P&gt;I think it may be a copy/paste error in&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;MK82F25615.h.&amp;nbsp; The preceding definition was the System Register File, which is defined identically to RFVBAT but is, indeed, 32 bytes:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;/** RFSYS - Register Layout Typedef */
typedef struct {
  __IO uint32_t REG[8]; /**&amp;lt; Register file register, array offset: 0x0, array step: 0x4 */
} RFSYS_Type;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I assume I can safely change the VBAT Register definition to occupy 128 bytes:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;typedef struct {
__IO uint32_t REG[32]; /**&amp;lt; VBAT register file register, array offset: 0x0, array step: 0x4 */
} RFVBAT_Type;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no idea how to report errata in MCUXpresso SDKs. If someone from NXP is reading this, please let me know.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 17:03:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1718192#M65523</guid>
      <dc:creator>deniscollis</dc:creator>
      <dc:date>2023-09-08T17:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: K82 VBAT Register File size</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1719739#M65532</link>
      <description>&lt;P class="lia-align-justify"&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/83989"&gt;@deniscollis&lt;/a&gt;,&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;As you mentioned the VBAT register should be &lt;EM&gt;__IO uint32_t REG[32]&lt;/EM&gt; instead of &lt;EM&gt;__IO uint32_t REG[8]&lt;/EM&gt; to meet what is stated in the &lt;A href="https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/k-series-arm-cortex-m4/k8x-secure/kinetis-k82-150-mhz-hw-cryptographic-co-processor-and-quadspi-microcontrollers-mcus-based-on-arm-cortex-m4-core:K82_150" target="_self"&gt;K82 Sub-Family Reference Manual&lt;/A&gt;.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Let us double check, if there is a special reason for it.&amp;nbsp;At the meantime, we are letting the team in charge to know about this. Thank you for feedback.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Best regards, Raul.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2023 20:42:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1719739#M65532</guid>
      <dc:creator>RaRo</dc:creator>
      <dc:date>2023-09-08T20:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: K82 VBAT Register File size</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1722257#M65540</link>
      <description>&lt;P class="lia-align-justify"&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/83989"&gt;@deniscollis&lt;/a&gt;,&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;After double check, &lt;A href="https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/k-series-arm-cortex-m4/k8x-secure/kinetis-k82-150-mhz-hw-cryptographic-co-processor-and-quadspi-microcontrollers-mcus-based-on-arm-cortex-m4-core:K82_150?_gl=1*1o8slk3*_ga*MzY3NDI0NjkyLjE2OTQyMDQ2NTI.*_ga_WM5LE0KMSH*MTY5NDIwNDY1Mi4xLjEuMTY5NDIwNjIzNC4wLjAuMA.." target="_blank"&gt;K82 Sub-Family Reference Manual&lt;/A&gt;&amp;nbsp;information is correct. We have already reported this issue to the team in charge of the SDK.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Thanks again for your feedback.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Best regards, Raul.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 18:03:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K82-VBAT-Register-File-size/m-p/1722257#M65540</guid>
      <dc:creator>RaRo</dc:creator>
      <dc:date>2023-09-13T18:03:38Z</dc:date>
    </item>
  </channel>
</rss>

