<?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: Problem declaration Table in flash in S12 / MagniV Microcontrollers</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191337#M7474</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 array was declared with "const" qualifier so i think the code&amp;nbsp;size would increase rather than the data size.&amp;nbsp;I&amp;nbsp;checked the same thing in the CW compiler and it is increasing the code&amp;nbsp;size if the "const" is used for an array equal to the&amp;nbsp;size&amp;nbsp;of the array and&amp;nbsp;increases the data if "const" is removed before the array. Please correct me if iam wrong in my understanding.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satya&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Mar 2011 10:06:08 GMT</pubDate>
    <dc:creator>freescale_satya</dc:creator>
    <dc:date>2011-03-17T10:06:08Z</dc:date>
    <item>
      <title>Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191333#M7470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i have a developpement kit DEM09S12XEP100. and i &lt;SPAN&gt;&lt;SPAN&gt;want to&lt;/SPAN&gt; &lt;SPAN&gt;declare&lt;/SPAN&gt; &lt;SPAN&gt;an&lt;/SPAN&gt; &lt;SPAN&gt;array in flash with 180Kbyte.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;this table is constant.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;i write this code.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;const int tab [300][300];&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;after compilation, i have a error "out of allocation space in segment ROM_C000 at adress 0xC051"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Can you help me please?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 00:53:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191333#M7470</guid>
      <dc:creator>DEMO9S12XEP100</dc:creator>
      <dc:date>2011-03-16T00:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191334#M7471</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 think you have declared a constant array of very huge size of 180Kb. If you reduce the size of the constant array then the error should go. I think you need to identify the following things&lt;/P&gt;&lt;P&gt;1. How much code size does your compiler support?&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;What is your&amp;nbsp;code size&amp;nbsp;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the above factors you have to figure out how much constant array size you can allocate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 09:54:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191334#M7471</guid>
      <dc:creator>freescale_satya</dc:creator>
      <dc:date>2011-03-16T09:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191335#M7472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To allocate such big chunk of data, first of all you need that big contiguous data segment. For 180kB you need at least 180/16&amp;nbsp; --- 11 flash pages. So you may edit prm file to comment out &lt;STRONG&gt;PAGE_C0 to PAGE_CA segments and all references to them&lt;/STRONG&gt;. Then you define new big segment specifing segment top and bottom using global addresses like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PAGES_C0_CA&amp;nbsp;&amp;nbsp; = READ_ONLY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x700000'G/*0xCA8000*/ TO 0x72BFFF'G/*0xCABFFF*/;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you define placement into this segment:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BIGDATA&amp;nbsp; INTO PAGES_C0_CA;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you come back to your source and put tab into BIGDATA like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma DATA_SEG __GPAGE_SEG BIGDATA&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;const int tab [300][300];&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;#pragma DATA_SEG DEFAULT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately &lt;STRONG&gt;you can't use &amp;gt;64k array directly&lt;/STRONG&gt;. You can initialize your 180k data in the code, but can't reference array elements like tab[i][j].&amp;nbsp;Instead, for &amp;gt;64k arrays you need to use __far24 pointers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#define dimx 300ul&lt;BR /&gt;#define dimy 300&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma DATA_SEG __GPAGE_SEG BIGDATA&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;const int tab [dimx][dimy];&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;#pragma DATA_SEG DEFAULT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;const int * __far24 tabptr = &amp;amp;tab[0][0];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;unsigned int i,j;&lt;/P&gt;&lt;P&gt;int x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void main(void) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; // accessing array elements&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; i = 0; j=0;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; x = tabptr[i*dimx + j]; // data @ 0x700000'g&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; i = 0; j=dimy-1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; x = tabptr[i*dimx + j]; // data @ 0x700256'g&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; i = dimx-1; j=0;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; x = tabptr[i*dimx + j]; // data @ 0x72BCC8'g&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; i = dimx-1; j=dimy-1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; x = tabptr[i*dimx + j]; // data @ 0x72BF1E'g&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note that:&lt;/P&gt;&lt;P&gt;1)array index should be long integer. I made dimx long, so that all expressions in [] are long.&lt;/P&gt;&lt;P&gt;2) this is still tricky. Array elements must be word aligned, else you&amp;nbsp;will certainly read wrong data if you try to read word from address % 0x10000 =&amp;nbsp;0xFFFF. For array of integers it is easy to&amp;nbsp;satisfy this requirement and never read "dangerous" address, just align whole array. For array of structs it may be harder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 13:23:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191335#M7472</guid>
      <dc:creator>kef</dc:creator>
      <dc:date>2011-03-16T13:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191336#M7473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is &lt;EM&gt;data&lt;/EM&gt;, not &lt;EM&gt;code&lt;/EM&gt;. So any CW restrictions on code size don't apply, because CW checks code size only, and not data size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 17:52:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191336#M7473</guid>
      <dc:creator>Lundin</dc:creator>
      <dc:date>2011-03-16T17:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191337#M7474</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 array was declared with "const" qualifier so i think the code&amp;nbsp;size would increase rather than the data size.&amp;nbsp;I&amp;nbsp;checked the same thing in the CW compiler and it is increasing the code&amp;nbsp;size if the "const" is used for an array equal to the&amp;nbsp;size&amp;nbsp;of the array and&amp;nbsp;increases the data if "const" is removed before the array. Please correct me if iam wrong in my understanding.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satya&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2011 10:06:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191337#M7474</guid>
      <dc:creator>freescale_satya</dc:creator>
      <dc:date>2011-03-17T10:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191338#M7475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Constants do end up in flash by default, sure.&lt;/P&gt;&lt;P&gt;But as far as I know, the build tools consider only code for the license limitation checks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2011 11:41:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191338#M7475</guid>
      <dc:creator>CompilerGuru</dc:creator>
      <dc:date>2011-03-17T11:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191339#M7476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thank you for your reponse.&lt;/P&gt;&lt;P&gt;my table is not have a size of 180Kb but just 100Kb. i use 180Kb for example.&lt;/P&gt;&lt;P&gt;for the flowing thnigs :&lt;/P&gt;&lt;P&gt;1. How much code size does your compiler support?&lt;/P&gt;&lt;P&gt;i use a codeWarrior version 5.9 that i installed with my developpemnt kit and i think that supported 64KB?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. What is your code size ?&lt;/P&gt;&lt;P&gt;my code is not tirminated so i dont know my code size. but how can i to check my code size ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2011 21:54:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191339#M7476</guid>
      <dc:creator>DEMO9S12XEP100</dc:creator>
      <dc:date>2011-03-17T21:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191340#M7477</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;Thank your for your reponse Kef&lt;/P&gt;&lt;P&gt;it s very clear&amp;nbsp; and it work&amp;nbsp;good. (after compilation t find my table at the 0x700000 global&lt;/P&gt;&lt;P&gt;Now, i can declared my table in flach using Ppage in .prm&lt;/P&gt;&lt;P&gt;&amp;nbsp; PAGES_C0_CA&amp;nbsp;&amp;nbsp; = READ_ONLY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x700000'G/*0xCA8000*/ TO 0x72BFFF'G/*0xCABFFF*/;&lt;/P&gt;&lt;P&gt;the error for comment&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x700000'G/*0x&lt;FONT color="#ff0000"&gt;C08000&lt;/FONT&gt;*/ TO 0x72BFFF'G/*0xCABFFF*/;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for my appliaction i want to declared a table canst &amp;nbsp;in flash and searching in my table for a value corrsponding a&amp;nbsp;value&amp;nbsp; and send this&amp;nbsp;value with CAN comunication.&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;#pragma DATA_SEG __GPAGE_SEG BIGDATA&lt;BR /&gt;const float tab [600][38]={ {.....................},{.............................}};&lt;BR /&gt;#pragma DATA_SEG DEFAULT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for (i=0;i&amp;lt;600;i++) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(j=0;j&amp;lt;38;j++){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(tab[i][j] == v)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; send frame();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kef, for you i can not check all value&amp;nbsp;for my table&amp;nbsp;in my if loop?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2011 22:16:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191340#M7477</guid>
      <dc:creator>DEMO9S12XEP100</dc:creator>
      <dc:date>2011-03-17T22:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191341#M7478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;the error for comment&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x700000'G/*0x&lt;FONT color="#ff0000"&gt;C08000&lt;/FONT&gt;*/ TO 0x72BFFF'G/*0xCABFFF*/;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Why error? Banked C0_8000 is exactly global 700000'G.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Array of 600*38 floats still is bigger than 64k and you have to use __far24 pointer. Accessing far array elements like tab[x][y] won't work for all x'&amp;nbsp;and y, since in current Codewarrior versions array offset can't be &amp;gt;=64k. For bigger arrays you need to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;const float * __far24 tabptr = &amp;amp;tab[0][0];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;x = tabptr[(long)i*dimx + (long)j];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course you can loop through all array elements, it's just not as comfortable and readable as tab[i][j].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2011 02:08:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191341#M7478</guid>
      <dc:creator>kef</dc:creator>
      <dc:date>2011-03-18T02:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem declaration Table in flash</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191342#M7479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Iam sorry iam at a mistake.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2011 10:04:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/Problem-declaration-Table-in-flash/m-p/191342#M7479</guid>
      <dc:creator>freescale_satya</dc:creator>
      <dc:date>2011-03-18T10:04:03Z</dc:date>
    </item>
  </channel>
</rss>

