<?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>MPC5xxx中的主题 Re: how to handle too big function</title>
    <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710746#M9282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not aware of any CodeWarrior compiler/debugger limitation that would have this behavior.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you possibly check if it is possible to execute the startup and reach main()?&lt;/P&gt;&lt;P&gt;If you can get at main() then we can assume the initialization of your global data and bss sections in external SRAM are correct at least.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Sep 2017 11:46:48 GMT</pubDate>
    <dc:creator>stanish</dc:creator>
    <dc:date>2017-09-01T11:46:48Z</dc:date>
    <item>
      <title>how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710741#M9277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt; word-wrap: break-word; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; text-align: start; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt; word-wrap: break-word; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; text-align: start; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;I' m using MPC5553 controller with Codewarrior 2.10 IDE . I have Simulink RTW generated code that has 10,000 line of code for single step() function. when I compile &amp;amp; burn the code it stuck as some location &amp;amp; it does not execute any application. But if I make that function small by deleting 9000 lines of code it works without any exception.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt; word-wrap: break-word; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; text-align: start; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt; word-wrap: break-word; font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; text-align: start; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;"&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;Is there any limitation on size of function? if yes how&amp;nbsp; to resolve above issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 13:05:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710741#M9277</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-08-29T13:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710742#M9278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess it could be possibly caused addressing mode. Try to apply following pragma to the function and its function prototype&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma push&lt;/P&gt;&lt;P&gt;#pragma section code_type ".text_vle" data_mode=far_abs code_mode=far_abs&lt;/P&gt;&lt;P&gt;void the_function(void)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // function body&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;#pragma pop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that if normally could be solved by adding of branch island&lt;/P&gt;&lt;P&gt;(Target Settings/EPPC Target/check 'Tune relocations')&lt;/P&gt;&lt;P&gt;but just CW2.10 contains erratum that 'Tune relocations' option does not work properly, workaround is absolute addressing pragma (marked above).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it does not help I would probably focus attention to stack content.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 11:30:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710742#M9278</guid>
      <dc:creator>davidtosenovjan</dc:creator>
      <dc:date>2017-08-30T11:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710743#M9279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks David for your inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did try to use below pragma around that big function call but did not help still have same issue.&lt;/P&gt;&lt;P&gt;I have allocated stack of 128KiB while from MAP file section .bss it shows that size of 0013082c has been used that is more than what I have allocated for it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While linker file details are as follow it an issue , what should I do to resolve it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Freescale CodeWarrior compiler address designations */&lt;/P&gt;&lt;P&gt;    &lt;U&gt;stack&lt;/U&gt;addr = ADDR(stack)+SIZEOF(stack);&lt;/P&gt;&lt;P&gt;    &lt;U&gt;stack&lt;/U&gt;end  = ADDR(.bss) + SIZEOF(.bss);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;U&gt;heap&lt;/U&gt;addr  = ADDR(heap);&lt;/P&gt;&lt;P&gt;    &lt;U&gt;heap&lt;/U&gt;end   = ADDR(heap)+SIZEOF(heap);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is Memory map:&lt;/P&gt;&lt;P&gt;                       Starting Size     File     ROM      RAM Buffer    S-Record Bin File Bin File&lt;/P&gt;&lt;P&gt;                       address           Offset   Address  Address       Line     Offset   Name&lt;/P&gt;&lt;P&gt;                .entry 00022020 00000070 00000380 00022020 00022020           251 00002020 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;    .ivor_branch_table 00020000 00000000 000003f0 00020000 00020000             0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;  .intc_hw_branch_table 00020000 00001354 00000800 00020000 00020000             2 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;        .ivor_handlers 00021354 00000000 00001b54 00021354 00021354             0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;                 .text 00023000 0009cee4 00001b60 00023000 00023000           257 00003000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;               .sdata2 000bfee8 00000580 0009ea48 000bfee8 000bfee8         32397 0009fee8 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;                 extab 000c0468 000034c0 0009efc8 000c0468 000c0468         32468 000a0468 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;            extabindex 000c3928 00004f40 000a2488 000c3928 000c3928         33144 000a3928 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;            .funcInRam 20000000 000000b0 000a73d0 000c8870 000c8870         34159 000a8870 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;                 .data 200000b0 00019340 000a7480 000c8920 000c8920         34168 000a8920 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;                .sdata 200193f0 00000774 000c07c0 000e1c60 000e1c60         39330 000c1c60 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;                 .sbss 20019b68 00000cd8 000c0f38 000c8870 000c8870             0 000a8870 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;                  .bss 2001a840 0013082c 000c0f38 000c8870 000c8870             0 000a8870 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;       .PPC.EMB.sdata0 2014b06c 00000000 000c0f38 000c8870 000c8870             0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;        .PPC.EMB.sbss0 2014b06c 00000000 000c0f38 000c8870 000c8870             0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;             .identity 00022008 00000008 000c0f38 00022008 00022008           250 00002008 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;            .variables 40000000 0000395c 000c0f40 000e23d8 000e23d8         39426 000c23d8 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;        .__CodeSys_ram 4000f800 00000010 000c48a0 000e5d38 000e5d38         40161 000c5d38 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;             .text_vle 00000000 00000000 000c48b0 000c8870 000c8870             0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;      .PPC.EMB.apuinfo 001ab34c 00000000 0026fc00 00273bbc 00273bbc             0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;/P&gt;&lt;P&gt;         .debug_abbrev          000001e5 000c48b0&lt;/P&gt;&lt;P&gt;           .debug_info          000aa6fc 000c4a95&lt;/P&gt;&lt;P&gt;        .debug_aranges          000000a0 0016f191&lt;/P&gt;&lt;P&gt;           .debug_line          00074c87 0016f231&lt;/P&gt;&lt;P&gt;            .debug_loc          0003da0f 001e3eb8&lt;/P&gt;&lt;P&gt;       .debug_pubnames          0000d616 002218c7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 12:12:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710743#M9279</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-08-30T12:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710744#M9280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thus only size of .bss section is more than 1 MByte, what is size of you external SRAM?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2017 10:39:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710744#M9280</guid>
      <dc:creator>davidtosenovjan</dc:creator>
      <dc:date>2017-08-31T10:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710745#M9281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes we do have 2MiB external RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did checked  the MAP file where below are the stack &amp;amp; heap address that looks correct &amp;amp; it does not overflow below are address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;external_ram:  org = 0x20000000, len = 0x00150000  //    1344  KiB      1.1875  MiB&lt;/P&gt;&lt;P&gt;    stack  :            org = 0x20150000, len = 0x00020000  //     128  KiB      0.1250  MiB&lt;/P&gt;&lt;P&gt;    heap :              org = 0x20170000, len = 0x00090000  //     576  KiB      0.6875  MiB&lt;/P&gt;&lt;P&gt;                                                            //&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2017 11:08:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710745#M9281</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-08-31T11:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710746#M9282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not aware of any CodeWarrior compiler/debugger limitation that would have this behavior.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you possibly check if it is possible to execute the startup and reach main()?&lt;/P&gt;&lt;P&gt;If you can get at main() then we can assume the initialization of your global data and bss sections in external SRAM are correct at least.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2017 11:46:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710746#M9282</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2017-09-01T11:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710747#M9283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it did come upto main function when I try to execute the etpu initialization function then somehow controller gets reset.&lt;/P&gt;&lt;P&gt;But I don’t think it something to do with eTPU init function b’cas debugger always show different address where it got reset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2017 04:38:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710747#M9283</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-09-04T04:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710748#M9284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vikas,&lt;/P&gt;&lt;P&gt;Can you identify the source of the reset? which IVOR it is?&lt;/P&gt;&lt;P&gt;Can you skip ETPU init and continue execution...does it crash somewhere else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps try to create a for loop at the beginning of main (very first statement) with counter increment.&lt;/P&gt;&lt;P&gt;does it increment the counter correctly?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2017 14:08:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710748#M9284</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2017-09-05T14:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710749#M9285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have figure out the issue it is related to flash memory overflow as per linker file allocation.&lt;/P&gt;&lt;P&gt;The flash is allocated for code + constant data, the data allocation has enter other segment that had been allocated for code memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to make sure that constant data should allocate in other segment of memory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 04:15:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710749#M9285</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-09-06T04:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710750#M9286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vikas,&lt;/P&gt;&lt;P&gt;Could you possibly post your .map and .lcf file ....this helps to find to identify the overlap find a solution/workaround.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AFAIK CodeWarrior for MPC55xx/56xx linker cannot distribute a single input section such as .rodata into multiple memory areas. If you need this you have to separate the objects into the multiple custom sections manually (e.g. using #pragma section) and these sections then can be placed into different memory areas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 12:44:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710750#M9286</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2017-09-06T12:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710751#M9287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello stanish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA requested files.&lt;/P&gt;&lt;P&gt;If you see the MAP file the below object ROM address are overriding the other region allocated for codesys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.       &lt;U&gt;f&lt;/U&gt;variables_rom 00104360&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.       &lt;U&gt;f&lt;/U&gt;__Simulink_ram_rom 001081b4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.           &lt;U&gt;f&lt;/U&gt;__CodeSys_ram_rom 001081b8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to make sure below object should exceed ROM address more than 0x00100000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 13:54:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710751#M9287</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-09-06T13:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710752#M9288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any update on below issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 11:32:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710752#M9288</guid>
      <dc:creator>vikasb</dc:creator>
      <dc:date>2017-09-12T11:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to handle too big function</title>
      <link>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710753#M9289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having troubles using tune relocation option ,can you share where is the errata mentioning it is not working with CW ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Oct 2017 08:11:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/how-to-handle-too-big-function/m-p/710753#M9289</guid>
      <dc:creator>rehabmansour</dc:creator>
      <dc:date>2017-10-16T08:11:46Z</dc:date>
    </item>
  </channel>
</rss>

