<?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>MCUXpresso SDK中的主题 Re: SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
    <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718152#M367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which phone OS are you using? and how are you trying to run the example? Could you please give me more details about it ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&amp;nbsp;&lt;BR /&gt;Estephania&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2018 22:48:54 GMT</pubDate>
    <dc:creator>stephanie_m</dc:creator>
    <dc:date>2018-12-14T22:48:54Z</dc:date>
    <item>
      <title>SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718149#M364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i'm new to NXP. I want to try out the&amp;nbsp;ble_thread_router_wireless_uart demo appilcation which i downloaded with the SDK i've builded using the MCUXpresso SDK Builder, name of the .zip-file:&amp;nbsp; NXP_SDK_2.2_FRDM-KW41Z. I executed the steps discribed in the "Kinetis Thread Stack Demo Applications User's Guide" PDF contained in the .zip-file to deploy the application with MCUXpresso IDE. When i'm building the example, i get the following output in the CDT Build Console:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Memory region &amp;nbsp;Used Size &amp;nbsp;Region Size &amp;nbsp;%age Used&lt;BR /&gt; TEXT_region1: &amp;nbsp;192 B 1 KB &amp;nbsp;18.75%&lt;BR /&gt;m_flash_config_region: 16 B 16 B &amp;nbsp;100.00%&lt;BR /&gt; TEXT_region2: &amp;nbsp;453659 B 455662 B &amp;nbsp; 99.56%&lt;BR /&gt; NVM_region: &amp;nbsp;65535 B &amp;nbsp;65535 B &amp;nbsp;100.00%&lt;BR /&gt; DATA1_region: &amp;nbsp;0 GB 32 KB &amp;nbsp; 0.00%&lt;BR /&gt; DATA2_region: &amp;nbsp;77976 B &amp;nbsp;96 KB &amp;nbsp;79.32%&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;/usr/local/mcuxpressoide-10.0.2_411/ide/tools/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/bin/ld: region m_text overflowed with text and data&lt;/SPAN&gt;&lt;BR /&gt;PRODUCT_INFO_region: 0 GB 2047 B 0.00%&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;/usr/local/mcuxpressoide-10.0.2_411/ide/tools/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/bin/ld: section .NVM loaded at [0006f800,0007f7fe] overlaps section .data loaded at [0006f02c,00070377]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;makefile:79: die Regel für Ziel „frdmkw41z_BLE_Thread_DualModewireless_examples_hybrid_ble_thread_router_wireless_uart_freertos.axf“ scheiterte&lt;/SPAN&gt;&lt;BR /&gt;collect2: error: ld returned 1 exit status&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;make: *** [frdmkw41z_BLE_Thread_DualModewireless_examples_hybrid_ble_thread_router_wireless_uart_freertos.axf] Fehler 1&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333;"&gt;I didn't change anything in the code or other files. Others with this problems hve posted their *.ld file in which the memory map is described, so here is mine:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;/* Specify the memory areas */&lt;BR /&gt;MEMORY&lt;BR /&gt;{&lt;BR /&gt; &lt;BR /&gt; TEXT_region1 (RX) : ORIGIN = m_text_start, LENGTH = (m_flash_config_start - m_text_start)&lt;BR /&gt; m_flash_config_region (RX) : ORIGIN = m_flash_config_start, LENGTH = (m_flash_config_end - m_flash_config_start)&lt;BR /&gt; TEXT_region2 (RX) : ORIGIN = m_flash_config_end + 1, LENGTH = (m_text_end - m_flash_config_end - 1)&lt;BR /&gt; &lt;BR /&gt; NVM_region (RW) : ORIGIN = NV_STORAGE_END_ADDRESS_C, LENGTH = (NV_STORAGE_START_ADDRESS_C - NV_STORAGE_END_ADDRESS_C)&lt;BR /&gt; DATA1_region (RW) : ORIGIN = m_data1_start, LENGTH = (m_data1_end - m_data1_start + 1)&lt;BR /&gt; DATA2_region (RW) : ORIGIN = m_data2_start, LENGTH = (__region_RAM2_end__ - __region_RAM2_start__ + 1)&lt;BR /&gt; PRODUCT_INFO_region (RX) : ORIGIN = m_fsl_prodInfo_start, LENGTH = (m_fsl_prodInfo_end - m_fsl_prodInfo_start)&lt;BR /&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I dind't change anything in the file, so the values used here are still default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using the FRDM-KW41Z Development Kit with the MCUXpresso IDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm thankfull for your answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2017 13:04:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718149#M364</guid>
      <dc:creator>aurelioschellen</dc:creator>
      <dc:date>2017-11-17T13:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718150#M365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How did you import the project?&amp;nbsp;I compiled it with no errors.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="compilation.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/503i2FC7A52498978D1D/image-size/large?v=v2&amp;amp;px=999" role="button" title="compilation.PNG" alt="compilation.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please give me more details on how are you working with the example?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Estephania&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 17:56:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718150#M365</guid>
      <dc:creator>stephanie_m</dc:creator>
      <dc:date>2017-12-05T17:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718151#M366</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 compile all the code for two boards without any error, but when I used my phone to connect to the board with thread shell function, it doesn't show any boards. What should I do now?&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Viet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:18:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718151#M366</guid>
      <dc:creator>hoang_ai_viet</dc:creator>
      <dc:date>2018-12-11T15:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718152#M367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which phone OS are you using? and how are you trying to run the example? Could you please give me more details about it ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&amp;nbsp;&lt;BR /&gt;Estephania&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2018 22:48:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718152#M367</guid>
      <dc:creator>stephanie_m</dc:creator>
      <dc:date>2018-12-14T22:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718153#M368</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 used Ios12. After I flashed two boards with the program in the tutorial, I used NXP Toolbox on my Phone, used Thread Shell , scan for devices, but there is no device to connect. Even I turn on and off Bluetooth many times. I used this Toolbox for example mit KW36Z with Heart rate and it works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Viet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2018 10:56:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718153#M368</guid>
      <dc:creator>hoang_ai_viet</dc:creator>
      <dc:date>2018-12-17T10:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: SDK example ble_thread_router_wireless_uart generates build error: region m_text overflowed with text and data</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718154#M369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we try to focus on the board with the hybrid example, are you debugging it ?&amp;nbsp;Or do you just run it? Just to verify if you try it on an Android device do you have the same behavior?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Estephania&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2018 19:06:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/SDK-example-ble-thread-router-wireless-uart-generates-build/m-p/718154#M369</guid>
      <dc:creator>stephanie_m</dc:creator>
      <dc:date>2018-12-17T19:06:38Z</dc:date>
    </item>
  </channel>
</rss>

