<?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>MQX Software SolutionsのトピックRe: Best way to move RAM usage to external SRAM?</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186894#M3315</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello,&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Im using the following method to put tasks in external RAM using flexbus (in my case MRAM).&lt;/DIV&gt;&lt;DIV&gt;Create a space of memory in a pool diferent to the default memory pool and use this space as task stack&lt;/DIV&gt;&lt;DIV&gt;Create the task using&amp;nbsp;&lt;SPAN style="line-height: 14px;"&gt;_task_create_at function from MQX.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;#define SOCKET_TASK_STACKSIZE 3000void * SOCKET_TASK_STACK; void socket_task_create(){ _task_id task_id; SOCKET_TASK_STACK = mram_alloc(SOCKET_TASK_STACKSIZE); task_id = _task_create_at(0, SOCKET_TASK, 0, SOCKET_TASK_STACK, SOCKET_TASK_STACKSIZE); if (task_id  == MQX_NULL_TASK_ID)  {  _task_block(); }}_mem_pool_id    _MRAM_pool_id;void mram_create_pool(){    _MRAM_pool_id = _mem_create_pool(BSP_EXTERNAL_MRAM_RAM_BASE, BSP_EXTERNAL_MRAM_RAM_SIZE);    if(_MRAM_pool_id == NULL)    {     _task_block();    }}pointer mram_alloc(int mem_size){ return _mem_alloc_from(_MRAM_pool_id, mem_size); }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Hardware:&lt;/DIV&gt;&lt;DIV&gt;TWR-KIT-MCF5225X&lt;/DIV&gt;&lt;DIV&gt;TWR-MEM&lt;/DIV&gt;&lt;DIV&gt;TWR-LCD&lt;/DIV&gt;&lt;DIV&gt;Software&lt;/DIV&gt;&lt;DIV&gt;eGUI 2.07&lt;/DIV&gt;&lt;DIV&gt;MQX 3.7&lt;/DIV&gt;&lt;DIV&gt;CW10.1&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Oct 2020 09:38:04 GMT</pubDate>
    <dc:creator>madifazio</dc:creator>
    <dc:date>2020-10-29T09:38:04Z</dc:date>
    <item>
      <title>Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186892#M3313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an MQX system running on an MCF52259 with 1MB of SRAM on the FlexBus. I'm running RTCS, the HTTP server, the shell, Mocana's NanoSSH, and a handfull of my own tasks. My question is this: What's the best way for me to off-load some of the RAM usage from the internal RAM to my external SRAM on the FlexBus? I have the external SRAM working, and I know I can set up a LWmem pool and malloc from that (and I am doing so in my own tasks). However, my task's stacks, and all the native MQX stuff (like RTCS and TCP, and whatever else) is doing a very good job filling up the internal 64K.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a good way to move MQX memory useage to the SRAM instead?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 23:19:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186892#M3313</guid>
      <dc:creator>admin</dc:creator>
      <dc:date>2011-02-28T23:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186893#M3314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you ever get an answer to your question Brad?&amp;nbsp; I also use an MCF52259 with external SRAM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replies are appreciated,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Juan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Codewarrior 10 Special Edition&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Windows XP Pro&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MQX 3.6.2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PEMicro USB ColdFire Multilink.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Custom Target based on Coldfire MCF52259.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Apr 2011 12:13:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186893#M3314</guid>
      <dc:creator>juanee</dc:creator>
      <dc:date>2011-04-30T12:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186894#M3315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello,&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Im using the following method to put tasks in external RAM using flexbus (in my case MRAM).&lt;/DIV&gt;&lt;DIV&gt;Create a space of memory in a pool diferent to the default memory pool and use this space as task stack&lt;/DIV&gt;&lt;DIV&gt;Create the task using&amp;nbsp;&lt;SPAN style="line-height: 14px;"&gt;_task_create_at function from MQX.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;#define SOCKET_TASK_STACKSIZE 3000void * SOCKET_TASK_STACK; void socket_task_create(){ _task_id task_id; SOCKET_TASK_STACK = mram_alloc(SOCKET_TASK_STACKSIZE); task_id = _task_create_at(0, SOCKET_TASK, 0, SOCKET_TASK_STACK, SOCKET_TASK_STACKSIZE); if (task_id  == MQX_NULL_TASK_ID)  {  _task_block(); }}_mem_pool_id    _MRAM_pool_id;void mram_create_pool(){    _MRAM_pool_id = _mem_create_pool(BSP_EXTERNAL_MRAM_RAM_BASE, BSP_EXTERNAL_MRAM_RAM_SIZE);    if(_MRAM_pool_id == NULL)    {     _task_block();    }}pointer mram_alloc(int mem_size){ return _mem_alloc_from(_MRAM_pool_id, mem_size); }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Hardware:&lt;/DIV&gt;&lt;DIV&gt;TWR-KIT-MCF5225X&lt;/DIV&gt;&lt;DIV&gt;TWR-MEM&lt;/DIV&gt;&lt;DIV&gt;TWR-LCD&lt;/DIV&gt;&lt;DIV&gt;Software&lt;/DIV&gt;&lt;DIV&gt;eGUI 2.07&lt;/DIV&gt;&lt;DIV&gt;MQX 3.7&lt;/DIV&gt;&lt;DIV&gt;CW10.1&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 09:38:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186894#M3315</guid>
      <dc:creator>madifazio</dc:creator>
      <dc:date>2020-10-29T09:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186895#M3316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Other method I use to use external MRAM is declare the location of same variables using the linker command file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;MEMORY&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;......&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; ram &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(RW): ORIGIN = 0x20000000, LENGTH = 0x00010000 &amp;nbsp;# SRAM - RW data&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; ram2 &amp;nbsp; &amp;nbsp; &amp;nbsp;(RW): ORIGIN = 0x10000000, LENGTH = 0x00010000 &amp;nbsp;# MRAM - RW data&lt;/DIV&gt;&lt;DIV&gt;.......&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;SECTIONS&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;................&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;___EXTERNAL_MRAM_BASE &amp;nbsp;= 0x10000000;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;___EXTERNAL_MRAM_SIZE &amp;nbsp;= 0x00080000;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;___EXTERNAL_MRAM_ROM_BASE = 0x10010000;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;___EXTERNAL_MRAM_ROM_SIZE = 0x00000000;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;___EXTERNAL_MRAM_RAM_BASE = 0x10010000;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;___EXTERNAL_MRAM_RAM_SIZE = 0x00070000;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;..........&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;.main_application_bss2 :&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;{&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; data_c.obj (.bss)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;} &amp;gt; ram2&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;.main_application_bss :&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; __START_SBSS = .;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; *(.sbss)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; *(SCOMMON)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; __END_SBSS = .;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; __START_BSS = .;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; *(.bss)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; *(COMMON)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; __END_BSS = .;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;} &amp;gt;&amp;gt; ram&lt;/P&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;..........&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;in data.c file:&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;/* * data.c * *  Created on: 15-abr-2011 *      Author: Marcos Di Fazio *       *      Todas las variables globales definidas en este modulo de  *      compilación van a ir a parar al espacio de memoria de MRAM *      Esto se define desde el linker command file. */// Buffer para textos de registros.char scrRegistros_txtBxTextMRAM[1000];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;SPAN style="font-family: arial, sans-serif;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;DIV&gt;Hardware:&lt;/DIV&gt;&lt;DIV&gt;TWR-KIT-MCF5225X&lt;/DIV&gt;&lt;DIV&gt;TWR-MEM&lt;/DIV&gt;&lt;DIV&gt;TWR-LCD&lt;/DIV&gt;&lt;DIV&gt;Software&lt;/DIV&gt;&lt;DIV&gt;eGUI 2.07&lt;/DIV&gt;&lt;DIV&gt;MQX 3.7&lt;/DIV&gt;&lt;DIV&gt;CW10.1&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 09:38:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186895#M3316</guid>
      <dc:creator>madifazio</dc:creator>
      <dc:date>2020-10-29T09:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186896#M3317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed that you got your mocana SSH running. I haven't been able to get mine going yet.&lt;/P&gt;&lt;P&gt;I dont have any of the common header files. My licence seems to work because I am able to see the bean in PE.&lt;/P&gt;&lt;P&gt;How do you link in the library and where are the header files?&lt;/P&gt;&lt;P&gt;My compiler compains that it can't find moptions.h and a whole lot more files that should be on my computer but I can't find them.&lt;/P&gt;&lt;P&gt;Sorry to trouble you with this Brad but I am desperate!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2012 20:36:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186896#M3317</guid>
      <dc:creator>drummer</dc:creator>
      <dc:date>2012-04-12T20:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186897#M3318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;I had to set two compiler flags to make it like the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Mocana&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;code. "-gccincludes" to make the Freescale compiler accept the relative include paths used in the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Mocana&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;code, and "-relax_pointers" (I don't remember why).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Getting that Mocana stuff going was not fun. This was only part of the issues I ran into.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2012 21:03:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186897#M3318</guid>
      <dc:creator>admin</dc:creator>
      <dc:date>2012-04-12T21:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186898#M3319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just want to run the demo.&lt;/P&gt;&lt;P&gt;There isn't any instructions on how build the encryption into your project that I can find.&lt;/P&gt;&lt;P&gt;Here is what I have done that doesn't work.&lt;/P&gt;&lt;P&gt;1) Created a stationery project.&lt;/P&gt;&lt;P&gt;2) delete the main.c and include the demo files.&lt;/P&gt;&lt;P&gt;3) add the cau_libv1.1.o&lt;/P&gt;&lt;P&gt;It compains that it cant find the common mocana header files.&lt;/P&gt;&lt;P&gt;I can't find them anywhere on my hard drive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2012 21:11:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186898#M3319</guid>
      <dc:creator>drummer</dc:creator>
      <dc:date>2012-04-12T21:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186899#M3320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure exactly what you're doing. It doesn't sound like what I was doing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd reccomend contacting Mocana. They were good with providing support to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2012 21:40:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186899#M3320</guid>
      <dc:creator>admin</dc:creator>
      <dc:date>2012-04-12T21:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186900#M3321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the code snippet you mentioned above. I am however not using the allocated memory for a task but for general mallocs used by my application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I notice a Hard_fault being triggered though by _lwmem_alloc_internal() when the memory Pool validity is checked. Any pointers on. I would appreciate it if you could help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 12:37:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186900#M3321</guid>
      <dc:creator>Akshaya_Mukund</dc:creator>
      <dc:date>2012-09-18T12:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move RAM usage to external SRAM?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186901#M3322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use the following instruction in the very first line of the first task creted:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_mem_extend( BSP_EXTERNAL_MRAM_RAM_BASE, BSP_EXTERNAL_MRAM_RAM_SIZE );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 08:43:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Best-way-to-move-RAM-usage-to-external-SRAM/m-p/186901#M3322</guid>
      <dc:creator>Teckna</dc:creator>
      <dc:date>2012-09-19T08:43:53Z</dc:date>
    </item>
  </channel>
</rss>

