<?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 How to read UID from MKE17Z using MCU_Link Pro in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1877294#M66405</link>
    <description>&lt;P&gt;Hi, I am using MCU_link Pro as debug/programming probe with MKE17Z MCUs. Is there any way to get the UID for each device using, for example, a .bat file as the one I am currently using to upload new firmware with crt_emu_cm_readling.exe and kinetisconnect.scp?&lt;/P&gt;&lt;P&gt;I know how to read it from code, but I need to do it externally with MCU Link.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2024 12:43:19 GMT</pubDate>
    <dc:creator>afcec</dc:creator>
    <dc:date>2024-05-29T12:43:19Z</dc:date>
    <item>
      <title>How to read UID from MKE17Z using MCU_Link Pro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1877294#M66405</link>
      <description>&lt;P&gt;Hi, I am using MCU_link Pro as debug/programming probe with MKE17Z MCUs. Is there any way to get the UID for each device using, for example, a .bat file as the one I am currently using to upload new firmware with crt_emu_cm_readling.exe and kinetisconnect.scp?&lt;/P&gt;&lt;P&gt;I know how to read it from code, but I need to do it externally with MCU Link.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 12:43:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1877294#M66405</guid>
      <dc:creator>afcec</dc:creator>
      <dc:date>2024-05-29T12:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to read UID from MKE17Z using MCU_Link Pro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1877750#M66406</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;As you know that the tools of KE17Z is MCUXPresso, IAR, keil, I have used the code to read UID.&lt;/P&gt;
&lt;DIV style="background-color: #ffffff; padding: 0px 0px 0px 2px;"&gt;
&lt;DIV style="color: #000000; background-color: #ffffff; font-family: 'Consolas'; font-size: 10pt; white-space: pre;"&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;uint32_t&lt;/SPAN&gt;&lt;SPAN&gt; array[4];&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;int&lt;/SPAN&gt; &lt;SPAN&gt;main&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;/* Board pin &lt;/SPAN&gt;&lt;SPAN&gt;init&lt;/SPAN&gt;&lt;SPAN&gt; */&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; BOARD_InitBootPins();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; BOARD_InitBootClocks();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; array[0]=SIM-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;UIDML&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; array[1]=SIM-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;UIDMH&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; array[2]=SIM-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;UIDL&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt; array[3]=SIM-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;UIDH&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;__asm&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;nop&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;..........&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0;"&gt;&lt;SPAN&gt;It is okay.&lt;/SPAN&gt;&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xiangjun_rong_0-1717035348172.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/281622iF2856423CFA63D75/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xiangjun_rong_0-1717035348172.png" alt="xiangjun_rong_0-1717035348172.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the register reading:&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xiangjun_rong_1-1717035450719.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/281623i18295D141397FBA2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xiangjun_rong_1-1717035450719.png" alt="xiangjun_rong_1-1717035450719.png" /&gt;&lt;/span&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 30 May 2024 02:22:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1877750#M66406</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2024-05-30T02:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to read UID from MKE17Z using MCU_Link Pro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1878069#M66408</link>
      <description>&lt;P&gt;Hi ZianJun,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your help but I do know how to read the UID from code. However, I need to read it externally with the MCU-Link using the programming connector and I was wondering if any of the tools available (.exe, .scp...) could provide what I am looking for.&lt;/P&gt;&lt;P&gt;Some members of our staff do not have access to MCUXpresso nor have they any knowledge about code so I want them to use the same tool they are currently using to flash the firmware (but with a different script) to get the UID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 09:23:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1878069#M66408</guid>
      <dc:creator>afcec</dc:creator>
      <dc:date>2024-05-30T09:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to read UID from MKE17Z using MCU_Link Pro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1878660#M66410</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Pls download the user guide of MCU link pro from the link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com.cn/docs/en/user-manual/UM11673.pdf" target="_blank"&gt;https://www.nxp.com.cn/docs/en/user-manual/UM11673.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can update the software in the MCU Link pro with J-Link firmware, then use the J-Link tools to read the memory/register value of the target processor.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 06:25:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-to-read-UID-from-MKE17Z-using-MCU-Link-Pro/m-p/1878660#M66410</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2024-05-31T06:25:06Z</dc:date>
    </item>
  </channel>
</rss>

