<?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>LPCXpresso IDE中的主题 Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657610#M32769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently have code for most other peripherals. Also another question, will enabling the flash memory on the LPC11C24 affect the functionality of any other peripherals, like CAN, ADC, Timer or GPIO?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Mar 2017 11:28:01 GMT</pubDate>
    <dc:creator>sudarshans</dc:creator>
    <dc:date>2017-03-16T11:28:01Z</dc:date>
    <item>
      <title>Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657610#M32769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently have code for most other peripherals. Also another question, will enabling the flash memory on the LPC11C24 affect the functionality of any other peripherals, like CAN, ADC, Timer or GPIO?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2017 11:28:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657610#M32769</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-03-16T11:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657611#M32770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudarshan S,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Read the flash memory is very easy, just read the according flash address and get the data is OK, you don't need to use the flash operation command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; But the write, you need to use the flash IAP command, you can find it from the LPC11C24 user manual:&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/16707i8A0FF7E92B37255F/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; About the code, you can refer to the secondary bootloader, which can be downloaded from this link:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.lpcware.com/content/nxpfile/an10995-lpc1100-secondary-bootloader-software-v13" title="https://www.lpcware.com/content/nxpfile/an10995-lpc1100-secondary-bootloader-software-v13"&gt;AN10995: LPC1100 secondary bootloader (with software) (v.1.3) | www.LPCware.com&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Folder:AN10995 LPC1100 secondary bootloader (with software)\AN10995\Bootloader&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/16748iB702EE678F1699F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When you do the flash operation, don't let other module's interrupt to break the flash operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;If you still have question, please let me know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&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>Mon, 20 Mar 2017 05:18:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657611#M32770</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2017-03-20T05:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657612#M32771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry Zhou,&lt;/P&gt;&lt;P&gt;Thank you for your timely help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Praseen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2017 09:43:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657612#M32771</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-18T09:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657613#M32772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praseen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If your problem is not solved, please let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If your problem is solved, please help to mark the correct answer to close this case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thank you and have a nice day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Kerry&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>Wed, 19 Apr 2017 01:19:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657613#M32772</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2017-04-19T01:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657614#M32773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again for your timely response. I have posted another query on receiving extended id based CAN messages via filtering using the LPC11C24. In case you do find the time, please have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Praseen&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2017 05:32:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657614#M32773</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-19T05:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657615#M32774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praseen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You can give me your link, I will help you to check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&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>Wed, 19 Apr 2017 05:59:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657615#M32774</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2017-04-19T05:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Could someone please share the LPC11C24 example code to read and write to flash memory?</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657616#M32775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the link. I hope that you can open it.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jivelink1" href="https://community.nxp.com/thread/449450" title="https://community.nxp.com/thread/449450"&gt;https://community.nxp.com/thread/449450&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Praseen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2017 06:33:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Could-someone-please-share-the-LPC11C24-example-code-to-read-and/m-p/657616#M32775</guid>
      <dc:creator>sudarshans</dc:creator>
      <dc:date>2017-04-19T06:33:56Z</dc:date>
    </item>
  </channel>
</rss>

