<?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>CodeWarrior for MCUのトピックRe: MCU Codewarrior: Problem report is - region 'm_data' overflowed</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551697#M13112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kuang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i thank you very much. I tried your suggestion and it works. As you told me i changed the length of 'm_data' in my command file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agian: thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have some time can you explain me why this works. Well, why can i enlarge 'm_data'?&lt;/P&gt;&lt;P&gt;I thought this is given me by my microcontroller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is 'm_data' a part of the memory of my microcontroller?&lt;/P&gt;&lt;P&gt;If yes, why can i change it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Armend&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Aug 2016 05:54:24 GMT</pubDate>
    <dc:creator>armendgecaj</dc:creator>
    <dc:date>2016-08-26T05:54:24Z</dc:date>
    <item>
      <title>MCU Codewarrior: Problem report is - region 'm_data' overflowed</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551695#M13110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am working with Kinteis K -series (with Codewarrior).&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing an algorithm, that produces a random labyrinth (with C).&lt;/P&gt;&lt;P&gt;Now i will show my labyrinth on a LCD Display. &lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But if i build my Project in Codewarrior i get the problem report: region 'm_data' overflowed by 12808 bytes.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I researched that the memory of the Kinetis K - family is seperated in two (m_data and m_data_20000000). I looked in my Project map file but my memory is not seperated.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked after another solution but i did not find any.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.73;"&gt;Does anybody have a solution?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.73;"&gt;Can it be that the memory requirements of my algorithm is to big for my microcontroller?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Or can i do something in the settings of Codewarrior to solve the Problem.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Armend&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-338480"&gt;mapFile.map.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 11:09:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551695#M13110</guid>
      <dc:creator>armendgecaj</dc:creator>
      <dc:date>2016-08-23T11:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: MCU Codewarrior: Problem report is - region 'm_data' overflowed</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551696#M13111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Armend&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually, &amp;nbsp;‘m_data’ is used to save global variables, stack, heap.&amp;nbsp; And the array ’abyrinth’ in your application is placed in .bss, which also locates in ‘m_data’. Since the ’abyrinth’ &amp;nbsp;is a big array, please try to enlarge the size of ‘m_data’&amp;nbsp; in your link command file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Fiona Kuang&lt;BR /&gt;TIC - Technical Information Center&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Mark Correct button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2016 08:57:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551696#M13111</guid>
      <dc:creator>TICS_Fiona</dc:creator>
      <dc:date>2016-08-24T08:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: MCU Codewarrior: Problem report is - region 'm_data' overflowed</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551697#M13112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kuang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i thank you very much. I tried your suggestion and it works. As you told me i changed the length of 'm_data' in my command file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agian: thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have some time can you explain me why this works. Well, why can i enlarge 'm_data'?&lt;/P&gt;&lt;P&gt;I thought this is given me by my microcontroller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is 'm_data' a part of the memory of my microcontroller?&lt;/P&gt;&lt;P&gt;If yes, why can i change it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Armend&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 05:54:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/MCU-Codewarrior-Problem-report-is-region-m-data-overflowed/m-p/551697#M13112</guid>
      <dc:creator>armendgecaj</dc:creator>
      <dc:date>2016-08-26T05:54:24Z</dc:date>
    </item>
  </channel>
</rss>

