<?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: lpc54114 Dual-core remote upgrade in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895189#M35888</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi wang zhipeng,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried upgrading M4 and M0 with different projects?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check following application note from Keil:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.keil.com/appnotes/docs/apnt_318.asp"&gt;http://www.keil.com/appnotes/docs/apnt_318.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 May 2019 20:24:45 GMT</pubDate>
    <dc:creator>FelipeGarcia</dc:creator>
    <dc:date>2019-05-07T20:24:45Z</dc:date>
    <item>
      <title>lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895185#M35884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Hello everyone&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp; &amp;nbsp; I will first describe my problem. I am doing a remote upgrade of LPC54114. The way I use it is one, the Bootloader program, one APP program, and two programs to download Flash at different addresses.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp; &amp;nbsp;1) Check if the second part of the code needs to be updated.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) Go to 4) if no updates are needed.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;3) Perform an update operation.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;4) Jump to the second part of the code execution.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp; &amp;nbsp; In this way, I implemented an upgrade to the M4 core. But my changes to the startup file have affected the startup of the M0+ core. Since I need to jump, I&amp;nbsp; changed the file (one is the original file, one is changed by me, I have the label in the annex), the main change is&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;__Vectors&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DCD&amp;nbsp; &amp;nbsp; &amp;nbsp;|Image$$ARM_LIB_STACK$$ZI$$Limit| ; Top of Stack&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;change to&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;__Vectors&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DCD&amp;nbsp; &amp;nbsp; &amp;nbsp;__initial_sp&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ; Top of Stack&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;Affect the variable to&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;Extern uint32_t Image$$CORE1_REGION$$Base;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;(My understanding of this variable is: the starting address of the M0 core program)&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp; Extern uint32_t Image$$CORE1_REGION$$Length;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;(My understanding of this variable is: length of the M0 core program)&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;The error after compiling is&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;debug\hello_world_cm4.out: Error: L6218E: Undefined symbol Image$$CORE1_REGION$$Base (referred from hello_world_core0.o).&lt;BR /&gt;debug\hello_world_cm4.out: Error: L6218E: Undefined symbol Image$$CORE1_REGION$$Length (referred from hello_world_core0.o).&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp; Can I solve this problem by making changes to the startup file or other methods? Or my upgrade ideas need to be changed?&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Does anyone have time to help me see it? Lpc54114 dual-core upgrade, I did not see someone doing it online, I have some problems. Thank you.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;My mail：&lt;/SPAN&gt;&lt;A class="" data-content-finding="Community" href="mailto:971443786@qq.com" style="color: #3d9ce7; background-color: transparent; border: 0px; font-weight: inherit; padding: 1px 0px 1px calc(12px + 0.35ex);"&gt;971443786@qq.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Apr 2019 05:45:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895185#M35884</guid>
      <dc:creator>971443786</dc:creator>
      <dc:date>2019-04-29T05:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895186#M35885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone help me? Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 01:32:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895186#M35885</guid>
      <dc:creator>971443786</dc:creator>
      <dc:date>2019-04-30T01:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895187#M35886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" href="https://community.nxp.com/people/971443786@qq.com"&gt;wang zhipeng&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you relocating the vector table offset register by using SCB-&amp;gt;VTOR before jumping to your application?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recommend you to check the following post:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/thread/453898"&gt;How to relocate interrupt vector table in MCUXpresso&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also please check the following application note in chapter 5.3.1 where explains in detail how to jump to user application.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.nxp.com/docs/en/application-note/AN10866.zip"&gt;https://www.nxp.com/docs/en/application-note/AN10866.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 17:54:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895187#M35886</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-04-30T17:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895188#M35887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hi Felipe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;First of all, thank you very much for your reply.Because of these days of vacation, I was not able to respond to you in time, I am sorry.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;I used the SCB-&amp;gt; VTOR relocation vector table offset register，I used the SCB-&amp;gt;VTOR relocation vector table offset register, and I completed the upgrade of the lpc54114 M4 core.This is not the question I asked.Below I will talk about the problems I encountered and why I need to change the startup file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;The compilation environment I am using is keil5. First, I need to first download the Bootloader program and the first version of the APP program. The two programs download Flash at different addresses. The Bootloader program is stored in 0X0~0X8000. The first version of the APP program is stored in 0X8000~0X20000. So I checked this option (as shown) to download the two programs to different addresses.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="DR[%$9ZNM7ROCFZQ7WO@0Q6.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/80350i1458F1488B0B6613/image-size/large?v=v2&amp;amp;px=999" role="button" title="DR[%$9ZNM7ROCFZQ7WO@0Q6.png" alt="DR[%$9ZNM7ROCFZQ7WO@0Q6.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;If you do not change the startup file, you will be prompted with the following error (as shown). So I changed the startup file to eliminate this error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6A$GH[OL`T[M2}7]ECGB~]J.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/80381i7F84F4A0183468C6/image-size/large?v=v2&amp;amp;px=999" role="button" title="6A$GH[OL`T[M2&amp;amp;#125;7]ECGB~]J.png" alt="6A$GH[OL`T[M2&amp;amp;#125;7]ECGB~]J.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;The changed startup file can upgrade the M4 core, but it affects the startup of the M0 core. I have changed the startup file and its effects and errors, I said in the post. I hope to solve this problem, not a jump problem. I can upgrade the LPC1768 or LPC54114M4 core, but I can't upgrade the LPC54114 dual core.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;Best regards,&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;wang zhipeng&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 May 2019 05:46:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895188#M35887</guid>
      <dc:creator>971443786</dc:creator>
      <dc:date>2019-05-05T05:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895189#M35888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi wang zhipeng,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried upgrading M4 and M0 with different projects?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check following application note from Keil:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.keil.com/appnotes/docs/apnt_318.asp"&gt;http://www.keil.com/appnotes/docs/apnt_318.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 May 2019 20:24:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895189#M35888</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-05-07T20:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895190#M35889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hi Felipe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;First of all, thank you very much for your reply.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp; The Cortex-M0+ runs in SRAM1 and the Cortex-M4 runs in Flash memory.I don't know how to use two different projects to upgrade.Keil's application notes can't help me.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;Do you know that someone has done a remote upgrade with LPC(&lt;SPAN style="color: #333333;"&gt;LPC4300 or LPC54110&lt;/SPAN&gt;) dual core?I can't find any information on the website and technical support in China, I can only find the upgrade to the single core about LPC.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;Regards,&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;wang zhipeng&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2019 06:05:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895190#M35889</guid>
      <dc:creator>971443786</dc:creator>
      <dc:date>2019-05-08T06:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895191#M35890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi wang zhipeng,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply. Unfortunately, we do not have information related to dual core upgrade.&lt;/P&gt;&lt;P&gt;Maybe the following link could help: &lt;A href="https://www.design-reuse.com/articles/38128/method-for-booting-arm-based-multi-core-socs.html"&gt;https://www.design-reuse.com/articles/38128/method-for-booting-arm-based-multi-core-socs.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience this may cause you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 May 2019 15:36:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895191#M35890</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-05-10T15:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: lpc54114 Dual-core remote upgrade</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895192#M35891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hi Felipe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;It doesn't matter, thank you for your reply, thank you again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;wang zhipeng&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 01:16:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc54114-Dual-core-remote-upgrade/m-p/895192#M35891</guid>
      <dc:creator>971443786</dc:creator>
      <dc:date>2019-05-16T01:16:59Z</dc:date>
    </item>
  </channel>
</rss>

