<?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: PT2000 CLK problem on FRDMPT2000EVM in Other NXP Products</title>
    <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370208#M32180</link>
    <description>&lt;P&gt;Thank you RafaR for you reply.&lt;/P&gt;&lt;P&gt;I tought that the PT2000 chip was able to switch alone to the external clock without the need to do manually the swith by the user software.&lt;/P&gt;&lt;P&gt;Anyway, as I stated before, I was trying to switch manually but after that, all the next registers accesses returned 0xAAAC like error code.&lt;/P&gt;&lt;P&gt;Today I tried changing the logic behind and hopefully I found the bug in my code, I had to add a 50 us delay betwheen a write register&amp;nbsp; access and a read register access, the new function that seems to work is now:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;int&lt;/SPAN&gt; &lt;SPAN&gt;PT2000ClockCheck&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;PT2000_Device&lt;/SPAN&gt;&lt;SPAN&gt; *PT2000Device)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;extClkIsOk&lt;/SPAN&gt;&lt;SPAN&gt; = PT2000MissingClkBitCheck(PT2000Device);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;( !PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;extClkIsOk&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;SwitchToClkPin&lt;/SPAN&gt;&lt;SPAN&gt; = 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000WriteRegister(PT2000Device, &lt;/SPAN&gt;&lt;SPAN&gt;mainBackupClockStatus&lt;/SPAN&gt;&lt;SPAN&gt;, PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;U&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;delayus(50)); &lt;/SPAN&gt;&lt;SPAN&gt;// Wait 50 &lt;/SPAN&gt;&lt;SPAN&gt;micro&lt;/SPAN&gt;&lt;SPAN&gt; seconds&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;extClkIsOk&lt;/SPAN&gt;&lt;SPAN&gt; = PT2000MissingClkBitCheck(PT2000Device);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where the function PT2000MissingClkBitCheck is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;boolean&lt;/SPAN&gt; &lt;SPAN&gt;PT2000MissingClkBitCheck&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;PT2000_Device&lt;/SPAN&gt;&lt;SPAN&gt; *PT2000Device)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;boolean&lt;/SPAN&gt;&lt;SPAN&gt; CLKCheckResult = TRUE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;// Check CLK 1MHz&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000TransferData(PT2000Device, &lt;/SPAN&gt;&lt;SPAN&gt;SpiCmdWrite&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;selectionRegister&lt;/SPAN&gt;&lt;SPAN&gt;, COMMON_PAGE); &lt;/SPAN&gt;&lt;SPAN&gt;// Set common page&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;U&lt;/SPAN&gt;&lt;SPAN&gt; = PT2000TransferData(PT2000Device, &lt;/SPAN&gt;&lt;SPAN&gt;SpiCmdRead&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;mainBackupClockStatus&lt;/SPAN&gt;&lt;SPAN&gt;, 0x00); &lt;/SPAN&gt;&lt;SPAN&gt;// Read backup clock status register&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;( PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;LossOfClk&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLKCheckResult = FALSE; &lt;/SPAN&gt;&lt;SPAN&gt;// If 1MHz CLK not there set results to 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; CLKCheckResult;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Without the delayus(50) doesn't work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you confirm I need that delay?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is this correct or to be more safety must I set time delay longer?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In general, must I insert a delay betwheen two successive access on a register?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 May 2026 12:52:04 GMT</pubDate>
    <dc:creator>Gelby</dc:creator>
    <dc:date>2026-05-22T12:52:04Z</dc:date>
    <item>
      <title>PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2369652#M32161</link>
      <description>&lt;P&gt;Hello, I'm using the&amp;nbsp;FRDMPT2000EVM connected to my microcontroller board.&lt;/P&gt;&lt;P&gt;The connections betwheen the two boards are:&lt;/P&gt;&lt;P&gt;Reset, DRVEN, SCLK, MISO, MOSI, CS, VCCIO(3.3V), VCC5, CLK.&lt;/P&gt;&lt;P&gt;I'm sure the SPI communication is working ( I can read / write registers).&lt;/P&gt;&lt;P&gt;I verified with a scope meter on the CLK jumper(that is closed) on the eval board that the CLK signal is as per the specification (frequency 1MHz, duty cycle 50 %, voltage level 3.3V) but when I read the&amp;nbsp;&lt;SPAN&gt;mainBackupClockStatus register (address 0x1A8) the bit 0 (loss_of_clock) is settled stating the external clock is not recognized, but I'm sure the clock is correct and correctly connected, I tried also to set the bit switch_to_clock_pin in the same register without success, please help me, where is the mistake?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 13:30:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2369652#M32161</guid>
      <dc:creator>Gelby</dc:creator>
      <dc:date>2026-05-21T13:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2369833#M32163</link>
      <description>&lt;P&gt;Hello&amp;nbsp;alessandrocorti&lt;/P&gt;
&lt;P&gt;Good day!&lt;/P&gt;
&lt;P&gt;The PLL is locked about 25 us after the external CLK is enabled&lt;/P&gt;
&lt;P&gt;Switch_to_clock_pin: this bit (active on rising edge) is used to provide a way to reset the loss of clock condition. If this bit is set during a loss of clock condition it is reset as soon as the clock manager switches the PLL input to the external reference. If this bit sets while there is no loss of clock, the bit resets immediately without any effect.&lt;/P&gt;
&lt;P&gt;Could you confirm that the PLL does change when you try to perform the switch_to_clock_pin?&lt;/P&gt;
&lt;P&gt;After the reset, try with a delay. Let the clock monitor stabilize.&lt;/P&gt;
&lt;P&gt;I also recommend that you reread chapter 7.4.3 Clock monitor, flash enable, and DrvEn of the &lt;A href="https://www.nxp.com/docs/en/data-sheet/MC33PT2000.pdf" target="_blank" rel="noopener"&gt;datasheet&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I hope this information has helped you, please let me know if you need help with anything else.&lt;/P&gt;
&lt;P&gt;Have a great day and best of luck.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 23:08:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2369833#M32163</guid>
      <dc:creator>RafaR</dc:creator>
      <dc:date>2026-05-21T23:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370208#M32180</link>
      <description>&lt;P&gt;Thank you RafaR for you reply.&lt;/P&gt;&lt;P&gt;I tought that the PT2000 chip was able to switch alone to the external clock without the need to do manually the swith by the user software.&lt;/P&gt;&lt;P&gt;Anyway, as I stated before, I was trying to switch manually but after that, all the next registers accesses returned 0xAAAC like error code.&lt;/P&gt;&lt;P&gt;Today I tried changing the logic behind and hopefully I found the bug in my code, I had to add a 50 us delay betwheen a write register&amp;nbsp; access and a read register access, the new function that seems to work is now:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;int&lt;/SPAN&gt; &lt;SPAN&gt;PT2000ClockCheck&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;PT2000_Device&lt;/SPAN&gt;&lt;SPAN&gt; *PT2000Device)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;extClkIsOk&lt;/SPAN&gt;&lt;SPAN&gt; = PT2000MissingClkBitCheck(PT2000Device);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;( !PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;extClkIsOk&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;SwitchToClkPin&lt;/SPAN&gt;&lt;SPAN&gt; = 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000WriteRegister(PT2000Device, &lt;/SPAN&gt;&lt;SPAN&gt;mainBackupClockStatus&lt;/SPAN&gt;&lt;SPAN&gt;, PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;U&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;delayus(50)); &lt;/SPAN&gt;&lt;SPAN&gt;// Wait 50 &lt;/SPAN&gt;&lt;SPAN&gt;micro&lt;/SPAN&gt;&lt;SPAN&gt; seconds&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;extClkIsOk&lt;/SPAN&gt;&lt;SPAN&gt; = PT2000MissingClkBitCheck(PT2000Device);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where the function PT2000MissingClkBitCheck is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;boolean&lt;/SPAN&gt; &lt;SPAN&gt;PT2000MissingClkBitCheck&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;PT2000_Device&lt;/SPAN&gt;&lt;SPAN&gt; *PT2000Device)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;boolean&lt;/SPAN&gt;&lt;SPAN&gt; CLKCheckResult = TRUE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;// Check CLK 1MHz&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000TransferData(PT2000Device, &lt;/SPAN&gt;&lt;SPAN&gt;SpiCmdWrite&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;selectionRegister&lt;/SPAN&gt;&lt;SPAN&gt;, COMMON_PAGE); &lt;/SPAN&gt;&lt;SPAN&gt;// Set common page&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;U&lt;/SPAN&gt;&lt;SPAN&gt; = PT2000TransferData(PT2000Device, &lt;/SPAN&gt;&lt;SPAN&gt;SpiCmdRead&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;mainBackupClockStatus&lt;/SPAN&gt;&lt;SPAN&gt;, 0x00); &lt;/SPAN&gt;&lt;SPAN&gt;// Read backup clock status register&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;( PT2000Device-&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BkpClkStatReg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;LossOfClk&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLKCheckResult = FALSE; &lt;/SPAN&gt;&lt;SPAN&gt;// If 1MHz CLK not there set results to 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; CLKCheckResult;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Without the delayus(50) doesn't work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you confirm I need that delay?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is this correct or to be more safety must I set time delay longer?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In general, must I insert a delay betwheen two successive access on a register?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 12:52:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370208#M32180</guid>
      <dc:creator>Gelby</dc:creator>
      <dc:date>2026-05-22T12:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370332#M32183</link>
      <description>&lt;P&gt;Hello alessandrocorti&lt;/P&gt;
&lt;P&gt;Good day!&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Do you confirm I need that delay?&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Yes, it's perfect that you implemented it.&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Is this correct or to be more safety must I set time delay longer?&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;More than 50 us is excessive, I think. You could give it another 20 us if you want to be sure; you shouldn't have any problems with 50 us.&lt;/P&gt;
&lt;P&gt;&lt;U&gt;In general, must I insert a delay betwheen two successive access on a register?&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;In general, this shouldn't be necessary; this delay was to give the PT2000 time to stabilize with the clock.&lt;/P&gt;
&lt;P&gt;I hope this information has helped you, please let me know if you need help with anything else.&lt;/P&gt;
&lt;P&gt;Have a great day and best of luck.&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2026 18:09:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370332#M32183</guid>
      <dc:creator>RafaR</dc:creator>
      <dc:date>2026-05-22T18:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370665#M32216</link>
      <description>&lt;P&gt;Hello RafaR,&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your reply, just the last question because I have yet a doubt,&lt;/P&gt;&lt;P&gt;In general must I every time switch manually to the external clock pin or should the PT2000 switch automatically when the external clock is recognized?&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 07:30:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370665#M32216</guid>
      <dc:creator>Gelby</dc:creator>
      <dc:date>2026-05-25T07:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370872#M32240</link>
      <description>&lt;P&gt;Hello alessandrocorti&lt;/P&gt;
&lt;P&gt;Good day!&lt;/P&gt;
&lt;P&gt;If external clock fails: device automatically switches to backup clock&lt;/P&gt;
&lt;P&gt;If external clock comes back: device usually does NOT auto-return&lt;/P&gt;
&lt;P&gt;You must switch again manually&lt;/P&gt;
&lt;P&gt;I hope this information has helped you, please let me know if you need help with anything else.&lt;/P&gt;
&lt;P&gt;Have a great day and best of luck.&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 15:55:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2370872#M32240</guid>
      <dc:creator>RafaR</dc:creator>
      <dc:date>2026-05-25T15:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: PT2000 CLK problem on FRDMPT2000EVM</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2371059#M32254</link>
      <description>&lt;P&gt;Hello RafaR,&lt;/P&gt;&lt;P&gt;I understand what you say.&lt;/P&gt;&lt;P&gt;I think In my case the problem is that at the startup the external clock is not recognized by the PT2000 because the microcontroller board that feed the clock is not powered at the same time the PT2000 is, so the PT2000 startup first without external clock, then the microcontroller begin to feed the clock but at this moment I must switch the clock manually.&lt;/P&gt;&lt;P&gt;I hope in the final board with the PT2000 and the microcontroller powered up at the same time, the PT2000 could recognize the clock at the startup phase.&lt;/P&gt;&lt;P&gt;Thanks again and Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2026 06:16:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PT2000-CLK-problem-on-FRDMPT2000EVM/m-p/2371059#M32254</guid>
      <dc:creator>Gelby</dc:creator>
      <dc:date>2026-05-26T06:16:53Z</dc:date>
    </item>
  </channel>
</rss>

