<?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>LPC Microcontrollers中的主题 Flash Signature Generation LPC43Sxx issues</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765964#M30822</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to use the Flash Signature Generation on a LPC43Sxx, getting unsuccessful results. I get signatures values with singulars values, and does not changes with the flash values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After an erase flash sector (using IAP functions), I checked in the memory tab of the debug perspective that the flash values of the corresponding flash_address and size change to 0xFFFFFFFF. Then I call the Signature Generation function becoming the following value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0 80000000 aaaaaaaa aaaaaaaa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later I proceed to write differents values in the same sector (using IAP functions), checking again in the changes in the memory tab, and calling the Signature Generation function becoming the same value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0 80000000 aaaaaaaa aaaaaaaa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, only when I run it in step by step in debug mode I get a diferent value, but just happens once, and can not repeat periodically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I run the Signature Generation function in RAM2 out of the flash as the datasheet suggested and with the IRQ disabled.&lt;/P&gt;&lt;P&gt;The code I use is the following:&lt;/P&gt;&lt;PRE&gt;
void hardSig(FLASH_SIG_Type * hard_sign) {

&amp;nbsp;&amp;nbsp; &amp;nbsp;ram_hardSig();

&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word0 = Chip_FMC_GetSignature(SECTOR_BANK, 0);
&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word1 = Chip_FMC_GetSignature(SECTOR_BANK, 1);
&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word2 = Chip_FMC_GetSignature(SECTOR_BANK, 2);
&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word3 = Chip_FMC_GetSignature(SECTOR_BANK, 3);

&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Hard_sign: %x ", hard_sign-&amp;gt;word0);
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("%x ", hard_sign-&amp;gt;word1);
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("%x ", hard_sign-&amp;gt;word2);
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("%x\r\n", hard_sign-&amp;gt;word3);
}&lt;/PRE&gt;&lt;P&gt;__RAMFUNC(RAM2) void ram_hardSig()&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Start signature address of the last sector*/&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define START_ADDR_LAST_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x1B070000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define START_AHB_ADDR_LAST_SECTOR&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; (START_ADDR_LAST_SECTOR &amp;amp; 0x001FFFF0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define SECTOR_BANK&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;IAP_FLASH_BANK_B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Size of each sector */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define SECTOR_SIZE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 65536&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* LAST SECTOR */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define IAP_LAST_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Number of bytes to be written to the last sector */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define IAP_NUM_BYTES_TO_WRITE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 512&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Start the signature generator for the last sector */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;//Chip_FMC_ComputeSignatureBlocks(SECTOR_BANK, START_ADDR_LAST_SECTOR, (SECTOR_SIZE / 16));&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_FMC_ComputeSignature(SECTOR_BANK, START_AHB_ADDR_LAST_SECTOR, START_AHB_ADDR_LAST_SECTOR + IAP_NUM_BYTES_TO_WRITE);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Check for signature geenration completion */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;while (Chip_FMC_IsSignatureBusy(SECTOR_BANK)) {}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One other strange data is that I can not read in the memory tab of the debug perspective the FMSW0/1/2/3 values of the Flash bank A (0x4000 C02C address) or B&amp;nbsp;(0x4000 D02C address), but I can read on address of others modules like timers or uarts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_7.png"&gt;&lt;IMG alt="pastedImage_7.png" src="https://community.nxp.com/t5/image/serverpage/image-id/51897iC306B920390F6D2E/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_7.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;P&gt;Besides, in the Peripheral tab of the debug perspective does not appear the FMC peripheral, but appears of the others peripherals:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_8.png"&gt;&lt;IMG alt="pastedImage_8.png" src="https://community.nxp.com/t5/image/serverpage/image-id/52357i2E9D6FB700D26000/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_8.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems like this model hasn't this Flash Signature Generation Module. But that is very rarely. Has anyone any experience with this module in this MCU model? Any other suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Nov 2020 14:06:58 GMT</pubDate>
    <dc:creator>javiervallori</dc:creator>
    <dc:date>2020-11-02T14:06:58Z</dc:date>
    <item>
      <title>Flash Signature Generation LPC43Sxx issues</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765964#M30822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to use the Flash Signature Generation on a LPC43Sxx, getting unsuccessful results. I get signatures values with singulars values, and does not changes with the flash values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After an erase flash sector (using IAP functions), I checked in the memory tab of the debug perspective that the flash values of the corresponding flash_address and size change to 0xFFFFFFFF. Then I call the Signature Generation function becoming the following value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0 80000000 aaaaaaaa aaaaaaaa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later I proceed to write differents values in the same sector (using IAP functions), checking again in the changes in the memory tab, and calling the Signature Generation function becoming the same value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0 80000000 aaaaaaaa aaaaaaaa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, only when I run it in step by step in debug mode I get a diferent value, but just happens once, and can not repeat periodically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I run the Signature Generation function in RAM2 out of the flash as the datasheet suggested and with the IRQ disabled.&lt;/P&gt;&lt;P&gt;The code I use is the following:&lt;/P&gt;&lt;PRE&gt;
void hardSig(FLASH_SIG_Type * hard_sign) {

&amp;nbsp;&amp;nbsp; &amp;nbsp;ram_hardSig();

&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word0 = Chip_FMC_GetSignature(SECTOR_BANK, 0);
&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word1 = Chip_FMC_GetSignature(SECTOR_BANK, 1);
&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word2 = Chip_FMC_GetSignature(SECTOR_BANK, 2);
&amp;nbsp;&amp;nbsp; &amp;nbsp;hard_sign-&amp;gt;word3 = Chip_FMC_GetSignature(SECTOR_BANK, 3);

&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Hard_sign: %x ", hard_sign-&amp;gt;word0);
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("%x ", hard_sign-&amp;gt;word1);
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("%x ", hard_sign-&amp;gt;word2);
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("%x\r\n", hard_sign-&amp;gt;word3);
}&lt;/PRE&gt;&lt;P&gt;__RAMFUNC(RAM2) void ram_hardSig()&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Start signature address of the last sector*/&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define START_ADDR_LAST_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x1B070000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define START_AHB_ADDR_LAST_SECTOR&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; (START_ADDR_LAST_SECTOR &amp;amp; 0x001FFFF0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define SECTOR_BANK&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;IAP_FLASH_BANK_B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Size of each sector */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define SECTOR_SIZE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 65536&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* LAST SECTOR */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define IAP_LAST_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Number of bytes to be written to the last sector */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;#define IAP_NUM_BYTES_TO_WRITE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 512&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Start the signature generator for the last sector */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;//Chip_FMC_ComputeSignatureBlocks(SECTOR_BANK, START_ADDR_LAST_SECTOR, (SECTOR_SIZE / 16));&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_FMC_ComputeSignature(SECTOR_BANK, START_AHB_ADDR_LAST_SECTOR, START_AHB_ADDR_LAST_SECTOR + IAP_NUM_BYTES_TO_WRITE);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Check for signature geenration completion */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;while (Chip_FMC_IsSignatureBusy(SECTOR_BANK)) {}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One other strange data is that I can not read in the memory tab of the debug perspective the FMSW0/1/2/3 values of the Flash bank A (0x4000 C02C address) or B&amp;nbsp;(0x4000 D02C address), but I can read on address of others modules like timers or uarts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_7.png"&gt;&lt;IMG alt="pastedImage_7.png" src="https://community.nxp.com/t5/image/serverpage/image-id/51897iC306B920390F6D2E/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_7.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;P&gt;Besides, in the Peripheral tab of the debug perspective does not appear the FMC peripheral, but appears of the others peripherals:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_8.png"&gt;&lt;IMG alt="pastedImage_8.png" src="https://community.nxp.com/t5/image/serverpage/image-id/52357i2E9D6FB700D26000/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_8.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems like this model hasn't this Flash Signature Generation Module. But that is very rarely. Has anyone any experience with this module in this MCU model? Any other suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2020 14:06:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765964#M30822</guid>
      <dc:creator>javiervallori</dc:creator>
      <dc:date>2020-11-02T14:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Flash Signature Generation LPC43Sxx issues</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765965#M30823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Javier Vallori,&lt;BR /&gt;Thank you for your interest in NXP Semiconductor products and &lt;BR /&gt;the opportunity to serve you.&lt;BR /&gt;I'd highly recommend you to refer to the periph_flashiap demo which demonstrates programming a FLASH block during run-time and generating a FLASH signature.&lt;BR /&gt;Peripheral tab doesn't contain FMC module, however, you can review these register in the memory tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/25675i23BD60E310FA1DAB/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2018 02:05:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765965#M30823</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-06-12T02:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Flash Signature Generation LPC43Sxx issues</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765966#M30824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;thank you for the answer. I try again on a new and simple test on periph_flashiap demo.&lt;/P&gt;&lt;P&gt;I start running just the periph_flashiap, getting exactly the same result you get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new, courier, monospace; font-size: 13px;"&gt;&lt;EM style="color: #0000ff;"&gt;&amp;nbsp;Generated signature for the last sector is: c283c8a8&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;After that, I made a very simple modification on that project. Apart of Erase and the CopyRamToFlash opertation on the last sector (sector #14), I just erase the penultimate sector WITHOUT the CopyRamToFlash operation. The result of the signature generation in both sector should be &lt;STRONG&gt;different,&lt;/STRONG&gt; but I get the &lt;STRONG&gt;same&lt;/STRONG&gt;:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;EM&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff; font-size: 13px; font-family: courier new, courier, monospace;"&gt;Generated signature for the penultimate sector is: c283c8a8&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="color: #0000ff; font-size: 13px; font-family: courier new, courier, monospace;"&gt;&amp;nbsp;Generated signature for the last sector is: c283c8a8&lt;/EM&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;The code I executed is the same one as in the periph_flashiap with few modifications marked in &lt;SPAN style="color: #ff0000;"&gt;red&lt;/SPAN&gt; :&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #000000; font-size: 12px;"&gt;/* Start signature address of the last sector*/
#define START_ADDR_LAST_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x1A070000
&lt;SPAN style="color: #ff0000;"&gt;#define START_ADDR_PENULTIMATE_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x1A060000&lt;/SPAN&gt;

/* Size of each sector */
#define SECTOR_SIZE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 65536

/* LAST SECTOR */
#define IAP_LAST_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14
&lt;SPAN style="color: #ff0000;"&gt;#define IAP_PENULTIMATE_SECTOR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 13&lt;/SPAN&gt;

/* Number of bytes to be written to the last sector */
#define IAP_NUM_BYTES_TO_WRITE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 512

/* Number elements in array */
#define ARRAY_ELEMENTS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IAP_NUM_BYTES_TO_WRITE / sizeof(uint32_t))

/* Data array to write to flash */
static uint32_t src_iap_array_data[ARRAY_ELEMENTS];

/*****************************************************************************
&amp;nbsp;* Public functions
&amp;nbsp;****************************************************************************/

int main(void)
{
&amp;nbsp;&amp;nbsp; &amp;nbsp;int i;
&amp;nbsp;&amp;nbsp; &amp;nbsp;uint8_t ret_code;
&amp;nbsp;&amp;nbsp; &amp;nbsp;uint32_t part_id;

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Generic Initialization */
&amp;nbsp;&amp;nbsp; &amp;nbsp;SystemCoreClockUpdate();
&amp;nbsp;&amp;nbsp; &amp;nbsp;Board_Init();
&amp;nbsp;&amp;nbsp; &amp;nbsp;Board_LED_Set(0, false);

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Enable SysTick Timer */
&amp;nbsp;&amp;nbsp; &amp;nbsp;SysTick_Config(SystemCoreClock / TICKRATE_HZ);

&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGSTR("\r\n\r\n");&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGSTR("Signature Test\r\n");&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGSTR("==============\r\n");&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Initialize the array data to be written to FLASH */
&amp;nbsp;&amp;nbsp; &amp;nbsp;for (i = 0; i &amp;lt; ARRAY_ELEMENTS; i++) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;src_iap_array_data[i] = 0x11223340 + i;
&amp;nbsp;&amp;nbsp; &amp;nbsp;}

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Read Part Identification Number*/
&amp;nbsp;&amp;nbsp; &amp;nbsp;part_id = Chip_IAP_ReadPID();
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Part ID is: %x\r\n", part_id);

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Disable interrupt mode so it doesn't fire during FLASH updates */
&amp;nbsp;&amp;nbsp; &amp;nbsp;__disable_irq();

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Initialize the IAP */
&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_Init();

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Error checking */
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);
&amp;nbsp;&amp;nbsp; &amp;nbsp;}

&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* IAP Flash programming */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Prepare to write/erase the last sector */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_PreSectorForReadWrite(IAP_PENULTIMATE_SECTOR, IAP_PENULTIMATE_SECTOR, IAP_FLASH_BANK_A);&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;/* Error checking */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Erase the last sector */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_EraseSector(IAP_PENULTIMATE_SECTOR, IAP_PENULTIMATE_SECTOR, IAP_FLASH_BANK_A);&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Error checking */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Prepare to write/erase the last sector */
&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_PreSectorForReadWrite(IAP_LAST_SECTOR, IAP_LAST_SECTOR, IAP_FLASH_BANK_A);

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Error checking */
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);
&amp;nbsp;&amp;nbsp; &amp;nbsp;}

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Erase the last sector */
&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_EraseSector(IAP_LAST_SECTOR, IAP_LAST_SECTOR, IAP_FLASH_BANK_A);

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Error checking */
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);
&amp;nbsp;&amp;nbsp; &amp;nbsp;}

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Prepare to write/erase the last sector */
&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_PreSectorForReadWrite(IAP_LAST_SECTOR, IAP_LAST_SECTOR, IAP_FLASH_BANK_A);

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Error checking */
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);
&amp;nbsp;&amp;nbsp; &amp;nbsp;}

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Write to the last sector */
&amp;nbsp;&amp;nbsp; &amp;nbsp;ret_code = Chip_IAP_CopyRamToFlash(START_ADDR_LAST_SECTOR, src_iap_array_data, IAP_NUM_BYTES_TO_WRITE);

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Error checking */
&amp;nbsp;&amp;nbsp; &amp;nbsp;if (ret_code != IAP_CMD_SUCCESS) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Command failed to execute, return code is: %x\r\n", ret_code);
&amp;nbsp;&amp;nbsp; &amp;nbsp;}

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Re-enable interrupt mode */
&amp;nbsp;&amp;nbsp; &amp;nbsp;__enable_irq();

&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;/* Start the signature generator for the last sector */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_FMC_ComputeSignatureBlocks(0, START_ADDR_PENULTIMATE_SECTOR, (SECTOR_SIZE / 16));&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Check for signature geenration completion */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;while (Chip_FMC_IsSignatureBusy(0)) {}&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Get the generated FLASH signature value */&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Generated signature for the penultimate sector is: %x \r\n", Chip_FMC_GetSignature(0, 0));&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Start the signature generator for the last sector */
&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_FMC_ComputeSignatureBlocks(0, START_ADDR_LAST_SECTOR, (SECTOR_SIZE / 16));

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Check for signature geenration completion */
&amp;nbsp;&amp;nbsp; &amp;nbsp;while (Chip_FMC_IsSignatureBusy(0)) {}

&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Get the generated FLASH signature value */
&amp;nbsp;&amp;nbsp; &amp;nbsp;DEBUGOUT("Generated signature for the last sector is: %x \r\n", Chip_FMC_GetSignature(0, 0));

&amp;nbsp;&amp;nbsp; &amp;nbsp;while (1) {
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;__WFI();
&amp;nbsp;&amp;nbsp; &amp;nbsp;}
}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 09:38:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765966#M30824</guid>
      <dc:creator>javiervallori</dc:creator>
      <dc:date>2018-06-14T09:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Flash Signature Generation LPC43Sxx issues</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765967#M30825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="290315" data-username="javiervallori" href="https://community.nxp.com/people/javiervallori"&gt;Javier Vallori&lt;/A&gt;&lt;/SPAN&gt;,&lt;BR /&gt;Please show the value of Signature generation result registers as I did previously.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2018 10:22:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765967#M30825</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-06-19T10:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Flash Signature Generation LPC43Sxx issues</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765968#M30826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;I show you the signature of the sector 13 (&lt;STRONG&gt;IAP_PENULTIMATE_SECTOR&lt;/STRONG&gt;) as you did:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="sceern1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/66450i1A1FA66BC55B0864/image-size/large?v=v2&amp;amp;px=999" role="button" title="sceern1.png" alt="sceern1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the signature of the sector 14 (&lt;STRONG&gt;IAP_LAST_SECTOR&lt;/STRONG&gt;, the one of the demo example):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="sceern2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/66451i52E94C092BF6E5C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="sceern2.png" alt="sceern2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As is previously indicated in the code I copied, the &lt;STRONG&gt;IAP_LAST_SECTOR&lt;/STRONG&gt; has a copy of the &lt;STRONG&gt;&lt;EM&gt;src_iap_array_data&lt;/EM&gt;&lt;/STRONG&gt; array, but not the &lt;STRONG&gt;IAP_PENULTIMATE_SECTOR&lt;/STRONG&gt;, wich has simply been erase. So the signature should be different, but it isn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously I do something wrong, but I don't know were, and I would appreciated any suggestion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 14:18:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765968#M30826</guid>
      <dc:creator>javiervallori</dc:creator>
      <dc:date>2018-07-25T14:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Flash Signature Generation LPC43Sxx issues</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765969#M30827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Javier Vallori,&lt;BR /&gt;I've replicated the phenomenon, it seems so weird.&lt;BR /&gt;I'll do more testing later to dig much deeper.&lt;BR /&gt;You can also use the software way to generate the flash signature instead of this hardware way and please learn the more information via the below link.&lt;BR /&gt;&lt;A href="https://os.mbed.com/forum/mbed/topic/4557/"&gt;https://os.mbed.com/forum/mbed/topic/4557/&lt;/A&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2018 06:16:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Flash-Signature-Generation-LPC43Sxx-issues/m-p/765969#M30827</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2018-07-27T06:16:57Z</dc:date>
    </item>
  </channel>
</rss>

