<?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のトピックLPC1788 and external SDRAM zeros initialization</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874103#M34878</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my project, I'm using the LPC1788 device and an external 32 bit SDRAM connected to it.&lt;/P&gt;&lt;P&gt;I modified the IAR configuration file (".icf" file) to create a region named&amp;nbsp;EXT_SDRAM,&amp;nbsp;in the external SDRAM space address, where store some variables (variable1, variable2, ....) used in the code. These variables have been declared as follows:&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#pragma default_variable_attributes = @ "EXT_SDRAM"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;variable1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;variable2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;.......&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#pragma default_variable_attributes =&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code works fine but the variables of the &lt;SPAN&gt;EXT_SDRAM region (&lt;/SPAN&gt;"variable1", "variable2", ...) are not initiallized&amp;nbsp;to zero value. Why do this happen? How do I have to do to initialize all EXT_SDRAM variables to zero value? Below there is the IAR configuration file that I modified.&amp;nbsp; Many thanks. Regards.&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*###ICF### Section handled by ICF editor, don't touch! ****/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/*-Editor annotation file-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*-Specials-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_intvec_start__ = 0x00018000;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*-Memory Regions-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_ROM_start__ = 0x00018000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_ROM_end__ = 0x0007FFFF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_RAM_start__ = 0x10000000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_RAM_end__ = 0x1000FFFF;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*-Sizes-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_size_cstack__ = 0x800;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_size_heap__ = 0x000; /*0x1000;*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/**** End of ICF editor section. ###ICF###*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define memory mem with size = 4G;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define symbol _SRAM_region_start__ = 0x20000000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol _SRAM_region_end__ = 0x20007FFF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region SRAM_region = mem:[from _SRAM_region_start__ to _SRAM_region_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define symbol _AHB_RAM_start__ = 0x20080000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol _AHB_RAM_end__ = 0x200BFFFF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region AHB_RAM_region = mem:[from _AHB_RAM_start__ to _AHB_RAM_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define symbol _EXT_SDRAM_start__ = 0xA0B26A40 /*0xA0000000*/;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol _EXT_SDRAM_end__ = 0xA0C1AC80 /*0xAFFFFFFF*/;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region EXT_SDRAM_region = mem:[from _EXT_SDRAM_start__ to _EXT_SDRAM_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;initialize by copy with packing = zeros { readwrite };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;do not initialize { section .noinit };&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;place at address mem:__ICFEDIT_intvec_start__ { section .intvec };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place at address mem:0x2FC { section CRPKEY };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in ROM_region { readonly };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in RAM_region { readwrite, block CSTACK, block HEAP };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in SRAM_region { section USB_RAM };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in EXT_SDRAM_region { readwrite section EXT_SDRAM };&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Mar 2019 17:49:53 GMT</pubDate>
    <dc:creator>aut</dc:creator>
    <dc:date>2019-03-06T17:49:53Z</dc:date>
    <item>
      <title>LPC1788 and external SDRAM zeros initialization</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874103#M34878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my project, I'm using the LPC1788 device and an external 32 bit SDRAM connected to it.&lt;/P&gt;&lt;P&gt;I modified the IAR configuration file (".icf" file) to create a region named&amp;nbsp;EXT_SDRAM,&amp;nbsp;in the external SDRAM space address, where store some variables (variable1, variable2, ....) used in the code. These variables have been declared as follows:&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#pragma default_variable_attributes = @ "EXT_SDRAM"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;variable1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;variable2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;.......&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#pragma default_variable_attributes =&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code works fine but the variables of the &lt;SPAN&gt;EXT_SDRAM region (&lt;/SPAN&gt;"variable1", "variable2", ...) are not initiallized&amp;nbsp;to zero value. Why do this happen? How do I have to do to initialize all EXT_SDRAM variables to zero value? Below there is the IAR configuration file that I modified.&amp;nbsp; Many thanks. Regards.&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*###ICF### Section handled by ICF editor, don't touch! ****/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/*-Editor annotation file-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*-Specials-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_intvec_start__ = 0x00018000;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*-Memory Regions-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_ROM_start__ = 0x00018000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_ROM_end__ = 0x0007FFFF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_RAM_start__ = 0x10000000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_region_RAM_end__ = 0x1000FFFF;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;/*-Sizes-*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_size_cstack__ = 0x800;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol __ICFEDIT_size_heap__ = 0x000; /*0x1000;*/&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;/**** End of ICF editor section. ###ICF###*/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define memory mem with size = 4G;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define symbol _SRAM_region_start__ = 0x20000000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol _SRAM_region_end__ = 0x20007FFF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region SRAM_region = mem:[from _SRAM_region_start__ to _SRAM_region_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define symbol _AHB_RAM_start__ = 0x20080000;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol _AHB_RAM_end__ = 0x200BFFFF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region AHB_RAM_region = mem:[from _AHB_RAM_start__ to _AHB_RAM_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define symbol _EXT_SDRAM_start__ = 0xA0B26A40 /*0xA0000000*/;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define symbol _EXT_SDRAM_end__ = 0xA0C1AC80 /*0xAFFFFFFF*/;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define region EXT_SDRAM_region = mem:[from _EXT_SDRAM_start__ to _EXT_SDRAM_end__];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;initialize by copy with packing = zeros { readwrite };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;do not initialize { section .noinit };&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;place at address mem:__ICFEDIT_intvec_start__ { section .intvec };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place at address mem:0x2FC { section CRPKEY };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in ROM_region { readonly };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in RAM_region { readwrite, block CSTACK, block HEAP };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in SRAM_region { section USB_RAM };&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;place in EXT_SDRAM_region { readwrite section EXT_SDRAM };&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Mar 2019 17:49:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874103#M34878</guid>
      <dc:creator>aut</dc:creator>
      <dc:date>2019-03-06T17:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1788 and external SDRAM zeros initialization</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874104#M34879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A _jive_internal="true" data-content-finding="Community" data-userid="297759" data-username="aut" href="https://community.nxp.com/people/aut"&gt;Nico Aprile&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;About " not initiallized&amp;nbsp;to zero value", so what value it is ?&lt;/P&gt;&lt;P&gt;If variable not&amp;nbsp; declared with &lt;SPAN class=""&gt;_ _no_init&lt;/SPAN&gt;, neither no value is given, it is cleared to zero.&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I use another board test the code, the variable is initialized to zero.&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;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:&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>Fri, 08 Mar 2019 03:16:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874104#M34879</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2019-03-08T03:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1788 and external SDRAM zeros initialization</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874105#M34880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/Alice_Yang"&gt;Alice_Yang&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer.&lt;/P&gt;&lt;P&gt;In my case, after making the SDRAM hardware setting, most of the EXT_SDRAM byte region have value 0x3C. Only a very few byte have value different by 0x3C.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2019 10:02:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874105#M34880</guid>
      <dc:creator>aut</dc:creator>
      <dc:date>2019-03-08T10:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1788 and external SDRAM zeros initialization</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874106#M34881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nico,&lt;/P&gt;&lt;P&gt;Could you please send a simple whole project that I can reproduce your problem on my side?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Alice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:32:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874106#M34881</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2019-03-11T10:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1788 and external SDRAM zeros initialization</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874107#M34882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alice,&lt;/P&gt;&lt;P&gt;I thank you for your support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Honestly I don't know what I can send you to allow you to reproduce my problem. Attached you can find the SDRAM initialization code that I'm using. The EMCInit() routine (that performs the external SDRAM&amp;nbsp;MT48LC4M32B2P initialization) is called at startup, before running the main loop. After the&amp;nbsp;&lt;SPAN&gt;EMCInit() is run, most of the external SDRAM variables used in my code, have 0x3C value.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Actually, I bypassed the problem, forcing (manually) to zero all&amp;nbsp;external SDRAM variables before&amp;nbsp;running the main loop. Even though in this way the code works fine, it doesn't seem to me to be a good solution. I can't understand if it is a compiler configuration problem or a SDRAM initializazion problem.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2019 08:01:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874107#M34882</guid>
      <dc:creator>aut</dc:creator>
      <dc:date>2019-03-12T08:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: LPC1788 and external SDRAM zeros initialization</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874108#M34883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nico,&lt;/P&gt;&lt;P&gt;To begin use SDRAM, yes, we need manually initialize it to 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Alice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2019 14:37:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC1788-and-external-SDRAM-zeros-initialization/m-p/874108#M34883</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2019-03-13T14:37:25Z</dc:date>
    </item>
  </channel>
</rss>

