<?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: compile and store constant array into external flash memory lpc1788 dev. board in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524041#M6677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by hamidzzz on Wed Jan 20 02:35:55 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi MC&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you so much for your informative reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, using your guidance, I realized that I need to define programming algorithm for my external flash device for Keil uvision (my ext. flash is k9f1g08u0c )&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know that it should no longer relate to LPC forum, but could you help me how to write the programming functions for that???&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(I know there are guidelines to do so on keil website, but I little confused as I'm newbie ... ;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 18:06:37 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T18:06:37Z</dc:date>
    <item>
      <title>compile and store constant array into external flash memory lpc1788 dev. board</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524038#M6674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by hamidzzz on Tue Jan 19 06:07:37 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I need to store a constant variable in external flash memory of my LPC1788 development board. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any suggestion? sample project???&amp;nbsp; (BTW I'm using Keil uvision)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks very much..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:06:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524038#M6674</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: compile and store constant array into external flash memory lpc1788 dev. board</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524039#M6675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mc on Tue Jan 19 10:47:31 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi hamidzz,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC1788 external static memory starts from 0x8000 0000. If you want to place&amp;nbsp; a constant DataStream array of size 3 at 0x8000 0000 you can do it as shown below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;const uint8_t __attribute__ ((at (0x80000000))) DataStream[3]={0x1,0x2,0x3};&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:06:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524039#M6675</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: compile and store constant array into external flash memory lpc1788 dev. board</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524040#M6676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MikeSimmonds on Tue Jan 19 15:09:49 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Deleted.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:06:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524040#M6676</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: compile and store constant array into external flash memory lpc1788 dev. board</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524041#M6677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by hamidzzz on Wed Jan 20 02:35:55 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi MC&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you so much for your informative reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, using your guidance, I realized that I need to define programming algorithm for my external flash device for Keil uvision (my ext. flash is k9f1g08u0c )&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know that it should no longer relate to LPC forum, but could you help me how to write the programming functions for that???&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(I know there are guidelines to do so on keil website, but I little confused as I'm newbie ... ;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:06:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/compile-and-store-constant-array-into-external-flash-memory/m-p/524041#M6677</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:06:37Z</dc:date>
    </item>
  </channel>
</rss>

