<?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: PCA21125 RTC in Other NXP Products</title>
    <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777613#M20559</link>
    <description>&lt;P&gt;Hello David,&lt;/P&gt;&lt;P&gt;I had tried to upload the images through the drag-drop tool but it gives me notification that " You do not have permission to upload the images."&lt;/P&gt;&lt;P&gt;So I request you to please share an mail id&amp;nbsp; on which I can attach my oscilloscope snippets.&lt;/P&gt;</description>
    <pubDate>Wed, 20 Dec 2023 05:55:28 GMT</pubDate>
    <dc:creator>AshBirari</dc:creator>
    <dc:date>2023-12-20T05:55:28Z</dc:date>
    <item>
      <title>PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1775387#M20511</link>
      <description>&lt;P&gt;Hello Nxp,&lt;/P&gt;&lt;P&gt;I am writing to you regarding a problem I have with the &lt;FONT face="arial black,avant garde"&gt;&lt;STRONG&gt;&lt;EM&gt;RTC chip PCA21125 communication with Aurix Microcontroller Tc389.&lt;/EM&gt; &lt;/STRONG&gt;&lt;/FONT&gt;I am &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;unable to write&lt;/FONT&gt;&lt;/STRONG&gt; the RTC &lt;STRONG&gt;registers&lt;/STRONG&gt;, which &lt;STRONG&gt;prevents&lt;/STRONG&gt; me from&lt;FONT color="#FF9900"&gt;&lt;STRONG&gt; clearing&lt;/STRONG&gt;&lt;/FONT&gt; the &lt;STRONG&gt;POR bit of Control 1&lt;/STRONG&gt; register and the&lt;STRONG&gt; RF bit of Second register.&lt;/STRONG&gt; As a result, the &lt;STRONG&gt;&lt;FONT color="#993300"&gt;SECONDS bitfield of Second register is not incrementing.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I am sharing my code.I would appreciate it if you could review it and give me your feedback. Is there anything I am missing or doing wrong? &lt;FONT face="arial black,avant garde" color="#FF0000"&gt;I have posted this question on the community forum before, but I did not receive any reply.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" color="#000000"&gt;Control_1 register Init Code :&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;FUNC(CDD_RTC_PCA_StatusType, CDD_RTC_PCA) CDD_RTC_PCA_RegCtrl1Init(void)&lt;BR /&gt;{&lt;BR /&gt;VAR(uint16, AUTOMATIC) DataIndex = 0U;&lt;BR /&gt;VAR(Std_ReturnType, TYPEDEF) RetVal = E_OK;&lt;BR /&gt;VAR(CDD_RTC_PCA_StatusType, TYPEDEF) eRTC_Status = CDD_RTC_OK;&lt;/P&gt;&lt;P&gt;PCAReg.RegCntrl_1.uint8_reg = RTC_REGCTRL1_INTI_VAL;&lt;/P&gt;&lt;P&gt;Cdd_RTC_SPITxBuff[DataIndex++] = WRITE_CMD | RTC_REG_CONTROL_1;&lt;BR /&gt;Cdd_RTC_SPITxBuff[DataIndex++] = PCAReg.RegCntrl_1.uint8_reg;&lt;/P&gt;&lt;P&gt;RetVal |= Spi_SetupEB(CDD_RTC_PCA_SPI_CHNL, &amp;amp;Cdd_RTC_SPITxBuff[0U], &amp;amp;Cdd_RTC_SPIRxBuff[0U], DataIndex);&lt;/P&gt;&lt;P&gt;/* Send data filled in SPI buffer over SPI */&lt;BR /&gt;RetVal |= CDD_RTC_SpiSend();&lt;/P&gt;&lt;P&gt;/* Check if SPI transfer successful */&lt;BR /&gt;if(E_OK != RetVal)&lt;BR /&gt;{&lt;BR /&gt;eRTC_Status = CDD_RTC_SPI_FAILURE;&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;// do nothing&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;return eRTC_Status;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Control_2 Register Init Code&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FUNC(CDD_RTC_PCA_StatusType, CDD_RTC_PCA) CDD_RTC_PCA_RegCtrl2Init(void)&lt;BR /&gt;{&lt;BR /&gt;VAR(uint16, AUTOMATIC) DataIndex = 0U;&lt;BR /&gt;VAR(Std_ReturnType, TYPEDEF) RetVal = E_OK;&lt;BR /&gt;VAR(CDD_RTC_PCA_StatusType, TYPEDEF) eRTC_Status = CDD_RTC_OK;&lt;/P&gt;&lt;P&gt;PCAReg.RegCntrl_2.uint8_reg = RTC_REGCTRL2_INTI_VAL;&lt;/P&gt;&lt;P&gt;Cdd_RTC_SPITxBuff[DataIndex++] = WRITE_CMD | RTC_REG_CONTROL_2;&lt;BR /&gt;Cdd_RTC_SPITxBuff[DataIndex++] = PCAReg.RegCntrl_2.uint8_reg;&lt;/P&gt;&lt;P&gt;RetVal |= Spi_SetupEB(CDD_RTC_PCA_SPI_CHNL, &amp;amp;Cdd_RTC_SPITxBuff[0U], &amp;amp;Cdd_RTC_SPIRxBuff[0U], DataIndex);&lt;/P&gt;&lt;P&gt;/* Send data filled in SPI buffer over SPI */&lt;BR /&gt;RetVal |= CDD_RTC_SpiSend();&lt;/P&gt;&lt;P&gt;/* Check if SPI transfer successful */&lt;BR /&gt;if(E_OK != RetVal)&lt;BR /&gt;{&lt;BR /&gt;eRTC_Status = CDD_RTC_SPI_FAILURE;&lt;BR /&gt;}&lt;BR /&gt;else{&lt;/P&gt;&lt;P&gt;//do nothing&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;return eRTC_Status;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Clear RF bit Function :&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;FUNC(CDD_RTC_PCA_StatusType, CDD_RTC_PCA) CDD_RTC_PCA_CLearRF(void)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; VAR(uint16, AUTOMATIC)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataIndex&amp;nbsp; &amp;nbsp;= 0U;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; VAR(Std_ReturnType, TYPEDEF)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RetVal&amp;nbsp; &amp;nbsp; &amp;nbsp; = E_OK;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; VAR(CDD_RTC_PCA_StatusType, TYPEDEF)&amp;nbsp; &amp;nbsp; eRTC_Status&amp;nbsp; &amp;nbsp; &amp;nbsp;= CDD_RTC_OK;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; PCAReg.RegSeconds.bit.RF = CDD_RTC_RF_CLR;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Cdd_RTC_SPITxBuff[DataIndex++]&amp;nbsp; &amp;nbsp;= WRITE_CMD | RTC_REG_SECONDS;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Cdd_RTC_SPITxBuff[DataIndex++]&amp;nbsp; &amp;nbsp;= PCAReg.RegSeconds.uint8_reg;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; RetVal |= Spi_SetupEB(CDD_RTC_PCA_SPI_CHNL, &amp;amp;Cdd_RTC_SPITxBuff[0U], &amp;amp;Cdd_RTC_SPIRxBuff[0U], DataIndex);&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Send data filled in SPI buffer over SPI */&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; RetVal |= CDD_RTC_SpiSend();&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Check if SPI transfer successful */&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; if(E_OK != RetVal)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; eRTC_Status = CDD_RTC_SPI_FAILURE;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; else{&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;RTC Driver Init Code&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;FUNC(CDD_RTC_PCA_StatusType, CDD_RTC_PCA) CDD_RTC_PCA_DriverInit(void)&lt;BR /&gt;{&lt;BR /&gt;VAR(Std_ReturnType, TYPEDEF) RetVal = E_OK;&lt;BR /&gt;VAR(CDD_RTC_PCA_StatusType, TYPEDEF) eRTC_Status = CDD_RTC_OK;&lt;/P&gt;&lt;P&gt;/* Set SPI to Sync Mode for Driver initialization */&lt;BR /&gt;u8RTC_SPIMode = CDD_RTC_PCA_SYNC_MODE;&lt;/P&gt;&lt;P&gt;RetVal |= CDD_RTC_PCA_RegCtrl1Init();&lt;/P&gt;&lt;P&gt;RetVal |= CDD_RTC_PCA_RegCtrl2Init();&lt;/P&gt;&lt;P&gt;RetVal |= CDD_RTC_PCA_CLearRF();&lt;/P&gt;&lt;P&gt;if(E_OK == RetVal)&lt;BR /&gt;{&lt;BR /&gt;eRTC_Status = CDD_RTC_OK;&lt;/P&gt;&lt;P&gt;/* Initialize RTC state to Idle */&lt;BR /&gt;u8RTCState = RTC_IDLE_STATE;&lt;/P&gt;&lt;P&gt;u8RTC_SPIMode = CDD_RTC_SPI_MODE_CFG;&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;eRTC_Status = E_NOT_OK;&lt;BR /&gt;}&lt;BR /&gt;return eRTC_Status;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Read Register Code&lt;/STRONG&gt; :&lt;/P&gt;&lt;P&gt;FUNC(CDD_RTC_PCA_StatusType, CDD_RTC_PCA) CDD_RTC_PCA_ReadReg( VAR(uint8, AUTOMATIC) u8StartIndx,&lt;BR /&gt;VAR(uint8, AUTOMATIC) u8TotalRegToRead,&lt;BR /&gt;P2VAR(uint8, AUTOMATIC, CDD_RTC_PCA) DataPtr )&lt;BR /&gt;{&lt;BR /&gt;VAR(uint8, AUTOMATIC) u8LoopIndx = 0U;&lt;BR /&gt;VAR(uint16, AUTOMATIC) DataIndex = 0U;&lt;BR /&gt;VAR(Std_ReturnType, TYPEDEF) RetVal = E_OK;&lt;BR /&gt;VAR(CDD_RTC_PCA_StatusType, TYPEDEF) eRTC_Status = CDD_RTC_OK;&lt;/P&gt;&lt;P&gt;g_TotalRegToRead = u8TotalRegToRead;&lt;/P&gt;&lt;P&gt;Cdd_RTC_SPITxBuff[DataIndex++] = READ_CMD | u8StartIndx;&lt;/P&gt;&lt;P&gt;for(u8LoopIndx = 0U; u8LoopIndx &amp;lt; u8TotalRegToRead; u8LoopIndx++)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;Cdd_RTC_SPITxBuff[DataIndex++] = u8StartIndx + u8LoopIndx;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;RetVal |= Spi_SetupEB(CDD_RTC_PCA_SPI_CHNL, &amp;amp;Cdd_RTC_SPITxBuff[0U], &amp;amp;Cdd_RTC_SPIRxBuff[0U], DataIndex);&lt;/P&gt;&lt;P&gt;/* Send data filled in SPI buffer over SPI */&lt;BR /&gt;RetVal |= CDD_RTC_SpiSend();&lt;/P&gt;&lt;P&gt;/* Check if SPI transfer successful */&lt;BR /&gt;if(E_OK != RetVal)&lt;BR /&gt;{&lt;BR /&gt;eRTC_Status = CDD_RTC_SPI_FAILURE;&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{ //do nothing }&lt;/P&gt;&lt;P&gt;return eRTC_Status;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SPI Configuration :&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;&lt;EM&gt;Chip Select polarity : High&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;&lt;EM&gt;Data Shifting edge : Trailing&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;&lt;EM&gt;Channel configuration --&amp;gt; Data Width : 8&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;I have been struggling over this for long time , please give the necessity inputs.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 15 Dec 2023 07:26:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1775387#M20511</guid>
      <dc:creator>AshBirari</dc:creator>
      <dc:date>2023-12-15T07:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1776319#M20535</link>
      <description>&lt;P&gt;Hello NXP, Please give me a reply&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 09:57:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1776319#M20535</guid>
      <dc:creator>AshBirari</dc:creator>
      <dc:date>2023-12-18T09:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1776607#M20540</link>
      <description>&lt;P&gt;Hello &lt;A id="link_6" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/224632" target="_self" aria-label="View Profile of AshBirari"&gt;&lt;SPAN class=""&gt;AshBirari&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;I hope all is great with you. Thank you for using the NXP communities.&lt;/P&gt;
&lt;P&gt;As we know, the first byte transmitted is the command byte. Are you following the correct procedure for the first byte?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="diazmarin09_0-1702940407245.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/254899i9F201E258FFB0C73/image-size/medium?v=v2&amp;amp;px=400" role="button" title="diazmarin09_0-1702940407245.png" alt="diazmarin09_0-1702940407245.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please share an oscilloscope trace of your writing procedure?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="diazmarin09_1-1702940434331.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/254900iC0969D741B529B5F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="diazmarin09_1-1702940434331.png" alt="diazmarin09_1-1702940434331.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 23:00:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1776607#M20540</guid>
      <dc:creator>diazmarin09</dc:creator>
      <dc:date>2023-12-18T23:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1776806#M20544</link>
      <description>&lt;P&gt;Hello David,&lt;/P&gt;&lt;P&gt;Yes , I am transmitting First byte as Command byte as you can see the above code.&lt;BR /&gt;I have tried to upload oscilloscope images but failed . Can you provide mail id where I can attach the results of oscilloscope ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 05:24:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1776806#M20544</guid>
      <dc:creator>AshBirari</dc:creator>
      <dc:date>2023-12-19T05:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777047#M20549</link>
      <description>&lt;P&gt;Hello David,&lt;/P&gt;&lt;P&gt;I have shared image of Oscilloscope via mail , which represents write operation on Control Register 1.&lt;/P&gt;&lt;P&gt;Violet : SDI Line of PCA21125 RTC chip.&lt;/P&gt;&lt;P&gt;Yellow : Clock&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 09:17:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777047#M20549</guid>
      <dc:creator>AshBirari</dc:creator>
      <dc:date>2023-12-19T09:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777311#M20553</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;A id="link_6" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/224632" target="_self" aria-label="View Profile of AshBirari"&gt;&lt;SPAN class=""&gt;AshBirari&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Could you please try to attach the file using the tool below?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="diazmarin09_0-1703006224687.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/255102i749E8705B848F525/image-size/medium?v=v2&amp;amp;px=400" role="button" title="diazmarin09_0-1703006224687.png" alt="diazmarin09_0-1703006224687.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;David&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 17:17:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777311#M20553</guid>
      <dc:creator>diazmarin09</dc:creator>
      <dc:date>2023-12-19T17:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777613#M20559</link>
      <description>&lt;P&gt;Hello David,&lt;/P&gt;&lt;P&gt;I had tried to upload the images through the drag-drop tool but it gives me notification that " You do not have permission to upload the images."&lt;/P&gt;&lt;P&gt;So I request you to please share an mail id&amp;nbsp; on which I can attach my oscilloscope snippets.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 05:55:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1777613#M20559</guid>
      <dc:creator>AshBirari</dc:creator>
      <dc:date>2023-12-20T05:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1778056#M20568</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;In this case, I do recommend to&amp;nbsp;&lt;A href="https://community.nxp.com/t5/HomeTest-Knowledge-Base/How-to-submit-a-new-question-for-NXP-Support/ta-p/1117058" target="_blank"&gt;submit a new case&lt;/A&gt; to get assistance from our team.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;David&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 15:34:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1778056#M20568</guid>
      <dc:creator>diazmarin09</dc:creator>
      <dc:date>2023-12-20T15:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: PCA21125 RTC</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1778743#M20582</link>
      <description>Link you have provided to me is not working either.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;AshBirari</description>
      <pubDate>Thu, 21 Dec 2023 12:49:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/PCA21125-RTC/m-p/1778743#M20582</guid>
      <dc:creator>AshBirari</dc:creator>
      <dc:date>2023-12-21T12:49:53Z</dc:date>
    </item>
  </channel>
</rss>

