<?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: Adding external RAM to  M52259 using mini-flexbus in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204919#M4785</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer, things are starting to get clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What if I want to use external RAM for stack?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Aug 2009 02:13:47 GMT</pubDate>
    <dc:creator>JaimeR</dc:creator>
    <dc:date>2009-08-05T02:13:47Z</dc:date>
    <item>
      <title>Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204917#M4783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have read AN3854 concerning this topic, however, this AN doesn't mention modifications to .lcf and I am not sure If modifications are required.&lt;/P&gt;&lt;P&gt;I also know that the 52259EVB have an external MRAM connected to this bus, but I haven't seen any&amp;nbsp;&lt;/P&gt;&lt;P&gt;explanation about the .lcf file in the examples provided, neither an example of&amp;nbsp; an application using this&lt;/P&gt;&lt;P&gt;external memory.&lt;/P&gt;&lt;P&gt;I am just starting with this part of the project and I might have missed some important documentation, please let me know if anyone knows about documentations or examples about this topic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advanced,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 00:41:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204917#M4783</guid>
      <dc:creator>JaimeR</dc:creator>
      <dc:date>2009-08-05T00:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204918#M4784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The extmram.lcf file used by the web_hvac demo shows an example of using the MRAM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The linker file defines some symbols:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ___EXTERNAL_MRAM_ROM_BASE = 0x10000000;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ___EXTERNAL_MRAM_ROM_SIZE = 0x00060000;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ___EXTERNAL_MRAM_RAM_BASE = 0x10060000;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ___EXTERNAL_MRAM_RAM_SIZE = 0x00020000;&lt;/P&gt;&lt;P&gt;The way the MRAM was carved up between ROM, or code space, and RAM was arbitrary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For rhe RAM portion, the BSP then defines :&lt;/P&gt;&lt;P&gt;#define BSP_EXTERNAL_MRAM_RAM_BASE&amp;nbsp; ((pointer)__EXTERNAL_MRAM_RAM_BASE)&lt;BR /&gt;#define BSP_EXTERNAL_MRAM_RAM_SIZE&amp;nbsp; ((uint_32)__EXTERNAL_MRAM_RAM_SIZE)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then the web HVAC demo carves up the MRAM RAM :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_RTCS_POOL_ADDR&amp;nbsp; (uint_32)(BSP_EXTERNAL_MRAM_RAM_BASE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_RTCS_POOL_SIZE&amp;nbsp; 0x0000A000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_MFS_POOL_ADDR&amp;nbsp;&amp;nbsp; (uint_32)(DEMOCFG_RTCS_POOL_ADDR + DEMOCFG_RTCS_POOL_SIZE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_MFS_POOL_SIZE&amp;nbsp;&amp;nbsp; 0x00002000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_KLOG_ADDR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (uint_32)(DEMOCFG_MFS_POOL_ADDR + DEMOCFG_MFS_POOL_SIZE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_KLOG_SIZE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and then it is used in the application, for example, to set up a memory pool for RTCS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_mem_pool = _mem_create_pool((pointer)DEMOCFG_RTCS_POOL_ADDR, DEMOCFG_RTCS_POOL_SIZE);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 00:53:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204918#M4784</guid>
      <dc:creator>EAI</dc:creator>
      <dc:date>2009-08-05T00:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204919#M4785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer, things are starting to get clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What if I want to use external RAM for stack?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 02:13:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204919#M4785</guid>
      <dc:creator>JaimeR</dc:creator>
      <dc:date>2009-08-05T02:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204920#M4786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a task that has it's stack in ext. ram by calling _task_create_at&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;_task_id _task_create_at&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* [IN] the processor upon which to create the task */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processor_number processor_number,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* [IN] the task template index number for this task */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _mqx_uint&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; template_index,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* [IN] the parameter to pass to the newly created task */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; uint_32&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* [IN] the location where the stack and TD are to be created */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pointer&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stack_ptr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* [IN] the size of the stack */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _mem_size&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stack_size&lt;BR /&gt;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This&amp;nbsp;function is not documented in the reference manual.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 03:48:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204920#M4786</guid>
      <dc:creator>EAI</dc:creator>
      <dc:date>2009-08-05T03:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204921#M4787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats exactly what I need, now I am looking for the mini Flexbus initialization code in the web_hvac application in order to make the changes to use my external SRAM and not the MRAM provided with the&lt;/P&gt;&lt;P&gt;M52259EVB. I have looked for the following code mentioned in the AN3854 but search haven't returned anything.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MCF_GPIO_PTEPAR = 0xFF; //Enable Address Lines A0-A7&lt;BR /&gt;MCF_GPIO_PTFPAR = 0xFF; //Enable Address Lines A8-A15&lt;BR /&gt;MCF_GPIO_PTGPAR = 0xFF; //Enable Address Lines A16-A19&lt;BR /&gt;MCF_GPIO_PTHPAR = 0x5555; //Enable Data Lines D0-D7&lt;BR /&gt;MCF_GPIO_PASPAR = 0x20; //Enable FB_CS1 function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have an idea what should I look for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 22:23:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204921#M4787</guid>
      <dc:creator>JaimeR</dc:creator>
      <dc:date>2009-08-05T22:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204922#M4788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the BSP project, in the file bsp_init.c, function mcf5225_init, you will find:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable Mini FlexBUS signals (used by external MRAM and CPLD) */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;GPIO.PASPAR = 0x20;&amp;nbsp;&amp;nbsp; /* enable CS1 operation for CPLD */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;GPIO.PTEPAR = 0xff;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;GPIO.PTFPAR = 0xff;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;GPIO.PTGPAR = 0xff;&amp;nbsp;&amp;nbsp; /* enable CS0 operation for MRAM */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;GPIO.PTHPAR = 0x5555;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable external MRAM mapped on CS0 */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;FB.CSAR0 = 0x10000000; /* CS0 base address */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;FB.CSCR0 = 0x00000540; /* CS0 control (8bit data, 1 waitstate) */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reg_ptr-&amp;gt;FB.CSMR0 = 0x00070001; /* CS0 address mask and enable */&lt;/P&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by EAI on&lt;/SPAN&gt; &lt;SPAN class="local-date"&gt;2009-08-05&lt;/SPAN&gt; &lt;SPAN class="local-time"&gt;06:49 PM&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2009 00:49:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204922#M4788</guid>
      <dc:creator>EAI</dc:creator>
      <dc:date>2009-08-06T00:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204923#M4789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This thread was quite helpful to me in bringing up the external sram up and running in my app spec board, the attached app note I used for making my sram accessible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did not modified the NVRAM start address of MCF52259EVB - used the same address with different size in Base address mask register. I used following configuration in control,mask and base addr registers for mini flex bus in bsp_init.c...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/* Enable Mini FlexBUS signals (used by external MRAM and CPLD) */    reg_ptr-&amp;gt;GPIO.PASPAR = 0x10;       reg_ptr-&amp;gt;GPIO.PTEPAR = 0xff;    reg_ptr-&amp;gt;GPIO.PTFPAR = 0xff;    reg_ptr-&amp;gt;GPIO.PTGPAR = 0xff;       reg_ptr-&amp;gt;GPIO.PTHPAR = 0x0000;    reg_ptr-&amp;gt;GPIO.DDRTH = 0xff;     reg_ptr-&amp;gt;GPIO.PORTTH = 0x00;         /* Enable external MRAM mapped on CS0 */    reg_ptr-&amp;gt;FB.CSAR0 = 0x10000000; /* CS0 base address */    reg_ptr-&amp;gt;FB.CSCR0 = 0x00301780; /* port size = 16 bit, 5- ws, multiplex mode, auto acknowledge enable, address setup - 11*/      reg_ptr-&amp;gt;FB.CSMR0 = 0x00010001; /* size 128 kb */&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this initialization and&amp;nbsp;following code I could access the external SRAM I configured&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;   *((unsigned short int *)0x10000000) = 0x1517;   *((unsigned short int *)0x10000002) = 0x1518;   *((unsigned short int *)0x10000004) = 0x1519;   *((unsigned short int *)0x10000006) = 0x151A;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question - when I try to use _task_create_at or memory pool creation with pointer at this external sram address it gives error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error while _task_create_at -&amp;gt; unhandled interrupt&lt;/P&gt;&lt;P&gt;Error while memory pool creation -&amp;gt; memory pool size too small.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using following code for both task creation and memory pool creation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;#define DEMOCFG_RTCS_POOL_ADDR  (uint_32)(BSP_EXTERNAL_SRAM_BASE)#define DEMOCFG_RTCS_POOL_SIZE  0x000100pointer pt = BSP_EXTERNAL_MRAM_BASE;....................tid = _task_create_at(0, TEST_TASK1, TEST_TASK1_PARAM, pt,TEST_STACK_SIZE);................._RTCS_mem_pool = _mem_create_pool((pointer)DEMOCFG_RTCS_POOL_ADDR, DEMOCFG_RTCS_POOL_SIZE);  &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea why MQX is giving error in both of the above function calls - is the memory endienness or byte/word access which MQX needs specifically ? I am using here the mux mode in 16 bit memory configurations...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time in reading this long thread and waiting for replies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 21:37:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204923#M4789</guid>
      <dc:creator>niravj</dc:creator>
      <dc:date>2010-05-04T21:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Adding external RAM to  M52259 using mini-flexbus</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204924#M4790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In which file do you put the following lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For rhe RAM portion, the BSP then defines :&lt;/P&gt;&lt;P&gt;#define BSP_EXTERNAL_MRAM_RAM_BASE&amp;nbsp; ((pointer)__EXTERNAL_MRAM_RAM_BASE)&lt;BR /&gt;#define BSP_EXTERNAL_MRAM_RAM_SIZE&amp;nbsp; ((uint_32)__EXTERNAL_MRAM_RAM_SIZE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And where do put this line ?&lt;/P&gt;&lt;P&gt;Then the web HVAC demo carves up the MRAM RAM :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_RTCS_POOL_ADDR&amp;nbsp; (uint_32)(BSP_EXTERNAL_MRAM_RAM_BASE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_RTCS_POOL_SIZE&amp;nbsp; 0x0000A000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_MFS_POOL_ADDR&amp;nbsp;&amp;nbsp; (uint_32)(DEMOCFG_RTCS_POOL_ADDR + DEMOCFG_RTCS_POOL_SIZE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_MFS_POOL_SIZE&amp;nbsp;&amp;nbsp; 0x00002000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_KLOG_ADDR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (uint_32)(DEMOCFG_MFS_POOL_ADDR + DEMOCFG_MFS_POOL_SIZE)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define DEMOCFG_KLOG_SIZE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 14:52:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Adding-external-RAM-to-M52259-using-mini-flexbus/m-p/204924#M4790</guid>
      <dc:creator>kleckerspur</dc:creator>
      <dc:date>2014-07-24T14:52:59Z</dc:date>
    </item>
  </channel>
</rss>

