<?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: Memory in MC9S12XF512MLM in S12 / MagniV Microcontrollers</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157055#M4749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You take the amount of device flash (512kB in your case), subtract READ_ONLY figure and get the amount of available flash. The same wuth RAM. You take total amount of RAM, subtract READ_WRITE.&lt;/P&gt;&lt;P&gt;Even if compiler calculated that for you,&amp;nbsp;most likely you will&amp;nbsp;need more figures&amp;nbsp;like&amp;nbsp;amount of spare&amp;nbsp;nonbanked flash left, amount of spare nonbanked RAM etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2012 21:12:18 GMT</pubDate>
    <dc:creator>kef</dc:creator>
    <dc:date>2012-06-25T21:12:18Z</dc:date>
    <item>
      <title>Memory in MC9S12XF512MLM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157052#M4746</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;I'm using the MCU MC9S12XF512MLM. And with my application I'm doing, i would like to know how much free memory i have to compute my application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm explaining my problem : I want to creat a buffer with the maximum of space that i could take from the memory of my MCU. But i don't know how many spaces i can use.&lt;/P&gt;&lt;P&gt;Because like in MPLAB X (Microchip), the software give to the user, the memory space of their program. Here ine Code Warrior i don't know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks you in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 15:49:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157052#M4746</guid>
      <dc:creator>Kartoon67</dc:creator>
      <dc:date>2012-04-25T15:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Memory in MC9S12XF512MLM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157053#M4747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should look into generated map file. Scroll to the end of file and find smth like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Total size of all blocks to be downloaded: 133&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;,where 133 is code size in bytes. You also may be interested in these strings, which are in the middle of map file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Summary of section sizes per section type:&lt;/P&gt;&lt;P&gt;&amp;nbsp;READ_ONLY (R):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 85 (dec:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 133)&lt;/P&gt;&lt;P&gt;&amp;nbsp;READ_WRITE (R/W):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2100 (dec:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8448)&lt;/P&gt;&lt;P&gt;&amp;nbsp;NO_INIT (N/I):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 27F (dec:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 639)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;READ_ONLY displays amount of code.&lt;/P&gt;&lt;P&gt;READ_WRITE displays amount of&amp;nbsp;part of RAM, which is zeroed up at program startup. With default PRM file, this string displays total amount of used RAM. You may prevent initializing of some variables in RAM, allocating selected variables in NO_INIT segments. In this case NO_INIT variables will be c ounted in NO_INIT string.&lt;/P&gt;&lt;P&gt;NO_INIT displays space, occupied by peripherals registers and&amp;nbsp;variables, allocated in NO_INIT segments.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 14:05:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157053#M4747</guid>
      <dc:creator>kef</dc:creator>
      <dc:date>2012-04-26T14:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Memory in MC9S12XF512MLM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157054#M4748</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;The summary of my generated file is like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Summary of section sizes per section type:&lt;BR /&gt;READ_ONLY (R):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 27BF (dec:&amp;nbsp;&amp;nbsp;&amp;nbsp; 10175)&lt;BR /&gt;READ_WRITE (R/W):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7D2 (dec:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2002)&lt;BR /&gt;NO_INIT (N/I):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2BC (dec:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 700)Summary of section sizes per section type:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, how i can know how many available space I have?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2012 15:50:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157054#M4748</guid>
      <dc:creator>Kartoon67</dc:creator>
      <dc:date>2012-06-25T15:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Memory in MC9S12XF512MLM</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157055#M4749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You take the amount of device flash (512kB in your case), subtract READ_ONLY figure and get the amount of available flash. The same wuth RAM. You take total amount of RAM, subtract READ_WRITE.&lt;/P&gt;&lt;P&gt;Even if compiler calculated that for you,&amp;nbsp;most likely you will&amp;nbsp;need more figures&amp;nbsp;like&amp;nbsp;amount of spare&amp;nbsp;nonbanked flash left, amount of spare nonbanked RAM etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2012 21:12:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Memory-in-MC9S12XF512MLM/m-p/157055#M4749</guid>
      <dc:creator>kef</dc:creator>
      <dc:date>2012-06-25T21:12:18Z</dc:date>
    </item>
  </channel>
</rss>

