<?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: LPC55S69 : recover after Flash Error in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986134#M38886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest you refer my article method two. This is also UM suggested method of read Flash.&lt;/P&gt;&lt;P&gt;How to fix LPC55Sxx AHB Read HardFault Error&lt;BR /&gt;&lt;A href="https://community.nxp.com/docs/DOC-345423" target="test_blank"&gt;https://community.nxp.com/docs/DOC-345423&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jan 2020 10:44:22 GMT</pubDate>
    <dc:creator>ZhangJennie</dc:creator>
    <dc:date>2020-01-15T10:44:22Z</dc:date>
    <item>
      <title>LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986127#M38879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During flash erase/program operation error can happens and it seems to me it is not recoverable.&lt;/P&gt;&lt;P&gt;Even reading of this area of memory cause Hardfault.&lt;/P&gt;&lt;P&gt;Only erasing of whole flash can suppress it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it possible to detect this kind of memory areas and erase only several Flash sectors ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can this problem be similar to one what is explained in errata ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"3.5 ROM.5: ROM fails to enter ISP mode when image is corrupted with&lt;BR /&gt;flash pages in an erased or unprogrammed state&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eugene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2020 18:22:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986127#M38879</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2020-01-08T18:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986128#M38880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have ECC error all the time even Flash prefetch is disabled,&lt;/P&gt;&lt;P&gt;I have initialized FLASH_Init at 96Mhz and use it at 12Mhz as well.&lt;/P&gt;&lt;P&gt;I have dumped 16 bytes at different stages, But 512 erase/write in use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+FMCCR 0x101A&lt;BR /&gt;00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp;&amp;lt;--- erased flashmemory&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;01 00 00 00 00 02 00 00 00 C4 02 10 FF FF FF FF &amp;lt;--------- memory buffer for write&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FLASH_Program() new slot at 0x2C000 , size 512&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;1 00 00 00 00 02 00 00 00 C4 02 10 FF FF FF FF &amp;lt;--- read flash memory directly&amp;nbsp;&lt;/P&gt;&lt;P&gt;116 Unknown status&amp;nbsp; &amp;lt;--- print error 116 (&amp;nbsp; kStatus_FLASH_EccError)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; FLASH_Verify( 116 ) fail, Addr - 0x2C000, Data - 0x2E2E2E2E&amp;nbsp; &amp;lt;-- call verify after that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see that first byte have value 0x21 instead of 0x01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it can happens in different places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that even reading of this memory cause HardFault and erasing of this sector dosn't help, even erase/Verify return OK.&lt;/P&gt;&lt;P&gt;Only mass erase or erase&amp;nbsp; by sectors can recover this flash sector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain what can be problems with Flash memory ?&lt;/P&gt;&lt;P&gt;Some caches, prefetches should be not only disabled but also flushed some how ?&lt;/P&gt;&lt;P&gt;MPU is active on nonsecure side. But flash access done via NSC call but source memory buffer on secure side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flash API is&amp;nbsp;called with disable interrupts aslo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__disable_irq();&lt;BR /&gt; __DSB();&lt;BR /&gt; __ISB();&lt;BR /&gt; status = FLASH_Program(&amp;amp;flashInstance, dest_address, (uint8_t*) &amp;amp;buffer[0], sizeof(buffer));&lt;BR /&gt; __enable_irq();&lt;BR /&gt; __NOP();&lt;BR /&gt; verify_status(status);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can be problem with IAP usage of flash memory ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eugene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2020 09:04:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986128#M38880</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2020-01-10T09:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986129#M38881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I write to the same place&amp;nbsp; it show other failed bit and after that hardfault :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ................&lt;BR /&gt;01 00 00 00 00 02 00 00 00 C8 02 10 FF FF FF FF | ................&lt;BR /&gt;FLASH_Program() at 0x2C400 , size 512&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;41&lt;/STRONG&gt; 00 00 00 00 02 00 00 00 C8 02 10 FF FF FF FF | A...............&lt;/P&gt;&lt;P&gt;116 Flash Ecc Error.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; FLASH_Verify( 116 ) fail at addr - 0x2C400, Data - 0x2E2E2E2E&lt;BR /&gt;-Core clock 12000000 Hz&lt;BR /&gt;-FMCCR 0x101A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write 3rd time&lt;BR /&gt;+FMCCR 0x101A&lt;BR /&gt;00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ................&lt;BR /&gt;01 00 00 00 00 02 00 00 00 CC 02 10 FF FF FF FF | ................&lt;BR /&gt;FLASH_Program() at 0x2C800 , size 512&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Entering HardFault interrupt!&lt;BR /&gt;SCB-&amp;gt;BFSR:PRECISERR fault: Precise data access error.&lt;BR /&gt;Address that caused secure bus violation is 0x1002C800.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It little bit weird but it is not clear what kind of RAM buffer is used in Bootrom for execute&lt;/P&gt;&lt;P&gt;flash command ( like it was in K82).&lt;/P&gt;&lt;P&gt;May be that RAM is not allocated properly ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or what can be reason for ECC errors ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eugene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jan 2020 13:11:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986129#M38881</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2020-01-11T13:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986130#M38882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eugene,&lt;/P&gt;&lt;P&gt;As the suggestion from UM11126,&lt;/P&gt;&lt;P&gt;"Read operations performed using flash controller commands (See Section 5.6.2 “Command listing (CMD)”) will not cause a hardfault."&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/82567i9CF5FDA33FB1FAF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am preparing an article on this issue. I will update you once I post it to community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jun Zhang&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>Wed, 15 Jan 2020 07:30:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986130#M38882</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2020-01-15T07:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986131#M38883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/ZhangJennie"&gt;ZhangJennie&lt;/A&gt;‌ !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It mean if reading of flash memory via Flash controller return error, one 512 sector can be erased and read error should vanish ?&lt;/P&gt;&lt;P&gt;Is this so ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While my experiments with ECC error I have found next dependence.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the same 32KB flash block is also used for code execution and NSC area and I try to use some part of it ( 8-16KB) for erase/write operation ( areas are not overlapped :smileyhappy:, they just located in the same 32KB block),&lt;/P&gt;&lt;P&gt;write operation almost always return ECC error. Even Flash acceleration and prefetch is disabled completely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I use now completely independent 32KB flash block by "storage" to test how reliable it can be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see Flash properties returns 32KB as Sector size :&lt;/P&gt;&lt;P&gt;FLASH_PropertyPflashSectorSize = 32768&lt;BR /&gt;FLASH_PropertyPflashTotalSize = 655360&lt;BR /&gt;FLASH_PropertyPflashPageSize = 0x200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means Flash memory is really organised as 32KB independent blocks and Erase/Write of 512 page is just some internal SW trick&lt;/P&gt;&lt;P&gt;in ROM API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any comment about it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eugene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2020 08:06:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986131#M38883</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2020-01-15T08:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986132#M38884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Hi,&lt;SPAN class=""&gt;&lt;A _jive_internal="true" class="" data-userid="320103" data-username="yevgen.gyl@solita.fi" href="https://community.nxp.com/people/yevgen.gyl@solita.fi"&gt;Eugene Hiihtaja&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;LPC55Sxx checks FLASH ECC while AHB read. During IDE debugger connecting a LPC55Sxx board, FLASH is mass erased first. The LPC55S69 mechanism is, FLASH contents are erased but the ECC values are not updated with that erasing. Therefore, when executing FLASH read code ( for example, &lt;SPAN style="color: black; background: #E8F2FE; text-decoration: underline; "&gt;mytemp&lt;/SPAN&gt;&lt;SPAN style="color: black; background: #E8F2FE;"&gt; = *(&lt;/SPAN&gt;&lt;SPAN style="color: #005032; background: #E8F2FE;"&gt;uint32_t&lt;/SPAN&gt;&lt;SPAN style="color: black; background: #E8F2FE;"&gt;*)0x4000 ) &lt;/SPAN&gt;through AHB bus, it detects the ECC values not match the erased memory content, which leads to fail to read and go to HardFault_Handler&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;Unlike mass erasing, programing FLASH updates the related ECC value. Thus with a successful ECC check, read AHB can be realizable by below code.&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;STRONG style="color: #7f0055; background: #E8F2FE; font-size: 10.0pt; "&gt;volatile&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; color: #005032; background: #E8F2FE;"&gt;uint32_t&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black; background: #E8F2FE;"&gt; mytemp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;STRONG style="color: #7f0055; background: #E8F2FE; font-size: 10.0pt; "&gt;……&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;SPAN style="color: black; background: #E8F2FE; text-decoration: underline; font-size: 10.0pt; "&gt;mytemp&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black; background: #E8F2FE;"&gt; = *(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #005032; background: #E8F2FE;"&gt;uint32_t&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black; background: #E8F2FE;"&gt;*)0x1000;//read memory content 0x1000 to mytemp&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;NOTE: 0x1000 MUST be a “programed” address.&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;The unused FLASH sector is in “erased” state, thus in order to read it, we need manually program it before AHB read. &lt;/P&gt;&lt;P style="margin-left: 18.0pt; text-indent: 0cm;"&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Jun Zhang&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&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 style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&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>Wed, 15 Jan 2020 08:50:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986132#M38884</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2020-01-15T08:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986133#M38885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/ZhangJennie"&gt;ZhangJennie&lt;/A&gt; !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes direct reading of flash memory via pointer cause Hardfault. Flasing of code via SWD and mass erase is out of scope right now.&lt;/P&gt;&lt;P&gt;I have small 8KB data storage on flash memory and would like to erase and write it by using 512 bytes chunks.&lt;/P&gt;&lt;P&gt;And need recover procedure for case when writing of 512 bytes is fail.&lt;/P&gt;&lt;P&gt;Does erasing of 512 byte page should recover error for this sector or NOT ?&lt;/P&gt;&lt;P&gt;Or only mass erase ( like suggested in MCU errata can recover flash memory) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eugene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2020 09:40:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986133#M38885</guid>
      <dc:creator>EugeneHiihtaja</dc:creator>
      <dc:date>2020-01-15T09:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S69 : recover after Flash Error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986134#M38886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest you refer my article method two. This is also UM suggested method of read Flash.&lt;/P&gt;&lt;P&gt;How to fix LPC55Sxx AHB Read HardFault Error&lt;BR /&gt;&lt;A href="https://community.nxp.com/docs/DOC-345423" target="test_blank"&gt;https://community.nxp.com/docs/DOC-345423&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2020 10:44:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S69-recover-after-Flash-Error/m-p/986134#M38886</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2020-01-15T10:44:22Z</dc:date>
    </item>
  </channel>
</rss>

