<?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 can the  the ship unique identification of  imx rt1052  be readed in app code? in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/806945#M1035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can the the ship unique identification of imx rt1052 be readed in app code?&lt;/P&gt;&lt;P&gt;I know&amp;nbsp; can be readed in flashloader.&lt;/P&gt;&lt;P&gt;I'm investigating...&lt;/P&gt;&lt;P&gt;Any help much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2018 06:54:57 GMT</pubDate>
    <dc:creator>1920844004</dc:creator>
    <dc:date>2018-10-18T06:54:57Z</dc:date>
    <item>
      <title>can the  the ship unique identification of  imx rt1052  be readed in app code?</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/806945#M1035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can the the ship unique identification of imx rt1052 be readed in app code?&lt;/P&gt;&lt;P&gt;I know&amp;nbsp; can be readed in flashloader.&lt;/P&gt;&lt;P&gt;I'm investigating...&lt;/P&gt;&lt;P&gt;Any help much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 06:54:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/806945#M1035</guid>
      <dc:creator>1920844004</dc:creator>
      <dc:date>2018-10-18T06:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: can the  the ship unique identification of  imx rt1052  be readed in app code?</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/806946#M1036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi zhihui&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chip unique id description can be found in Table 5-9. Fusemap Descriptions &lt;/P&gt;&lt;P&gt;i.MX RT1050 Reference Manual and some fuse examples can be found in MCUXpresso&lt;/P&gt;&lt;P&gt;..devices/MIMXRT1052/drivers/fsl_dcp.c&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fwww.nxp.com%2Fdocs%2Fen%2Freference-manual%2FIMXRT1050RM.pdf" rel="nofollow" target="_blank"&gt;https://www.nxp.com/docs/en/reference-manual/IMXRT1050RM.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 23:47:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/806946#M1036</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2018-10-18T23:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: can the  the ship unique identification of  imx rt1052  be readed in app code?</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/1202030#M11773</link>
      <description>&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;it is not related to fusemap / dcp module.&lt;/P&gt;&lt;P&gt;Here is the code to read the MCU Unique Device ID:&lt;/P&gt;&lt;P&gt;1. Add fsl_ocotp.c / .h to your drivers folder (you can copy them from the SDK)&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;&lt;/P&gt;&lt;P&gt;#include "fsl_ocotp.h"&lt;/P&gt;&lt;P&gt;#define OCOTP_FREQ_HZ (CLOCK_GetFreq(kCLOCK_IpgClk))&lt;/P&gt;&lt;P&gt;OCOTP_Init(OCOTP, OCOTP_FREQ_HZ);&lt;/P&gt;&lt;P&gt;// Print MCU Unique Device ID&lt;/P&gt;&lt;P&gt;PRINTF("OCOTP controller CFG0: 0x%08X\r\n", OCOTP-&amp;gt;CFG0);&lt;BR /&gt;PRINTF("OCOTP controller CFG1: 0x%08X\r\n", OCOTP-&amp;gt;CFG1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's all,&lt;/P&gt;&lt;P&gt;Enjoy !&lt;/P&gt;</description>
      <pubDate>Sun, 20 Dec 2020 20:35:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/can-the-the-ship-unique-identification-of-imx-rt1052-be-readed/m-p/1202030#M11773</guid>
      <dc:creator>brain00</dc:creator>
      <dc:date>2020-12-20T20:35:03Z</dc:date>
    </item>
  </channel>
</rss>

