<?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 APP Project  LCF file configuration about __initialized_intc_handlertable in MPC5xxx</title>
    <link>https://community.nxp.com/t5/MPC5xxx/APP-Project-LCF-file-configuration-about-initialized-intc/m-p/776084#M11252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a problem about the APP project LCF &amp;nbsp;file configuration&amp;nbsp;about __initialized_intc_handlertable for bootloader function,the mcu is 5606b,please help me check the LCF configuration.thanks a lot.&lt;/P&gt;&lt;P&gt;compiler have the warnning:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="微信截图_20180109153144.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/58307iE8DA5D268FE8C99A/image-size/large?v=v2&amp;amp;px=999" role="button" title="微信截图_20180109153144.png" alt="微信截图_20180109153144.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;LCF configuration as follows:&lt;/P&gt;&lt;P&gt;=======================================================================&lt;/P&gt;&lt;P&gt;/* lcf file for MPC560xB processors */&lt;BR /&gt;/* */&lt;BR /&gt;/* 1 MB Flash, 80KB SRAM */&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MEMORY&lt;BR /&gt;{&lt;BR /&gt; resetvector: org = 0x00018000, len = 0x00000008&lt;BR /&gt; init: org = 0x00018020, len = 0x00000FE0 &lt;BR /&gt; exception_handlers: org = 0x00019000, len = 0x00001000&lt;BR /&gt; internal_flash: org = 0x0001A000, len = 0x00164700 &lt;BR /&gt; app_version: org = 0x0017E700, len = 0x00000100&lt;BR /&gt; isr_vectors_table: org = 0x0017E800, len = 0x00001800&lt;/P&gt;&lt;P&gt;internal_ram: org = 0x40000000, len = 0x00012000&lt;BR /&gt; ccp_data_ram: org = 0x40012000, len = 0x00002000&lt;BR /&gt; heap : org = 0x40014000, len = 0x00001FF0 &lt;BR /&gt; stack : org = 0x40016000, len = 0x00001FF0&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* This will ensure the rchw and reset vector are not stripped by the linker */&lt;BR /&gt;FORCEACTIVE { "bam_rchw" "bam_resetvector" }&lt;/P&gt;&lt;P&gt;SECTIONS&lt;BR /&gt;{&lt;BR /&gt; .__bam_bootarea LOAD (0x00018000): {} &amp;gt; resetvector&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .init LOAD (0x00018020) : {}&lt;BR /&gt; .init_vle (VLECODE) LOAD (_e_init) : {&lt;BR /&gt; *(.init)&lt;BR /&gt; *(.init_vle)&lt;BR /&gt; }&lt;BR /&gt; } &amp;gt; init&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .ivor_branch_table (VLECODE) LOAD (0x00019000) : {}&lt;BR /&gt; .__exception_handlers (VLECODE) LOAD (_e_ivor_branch_table) : {} &lt;BR /&gt; } &amp;gt; exception_handlers&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .text : {} &lt;BR /&gt; .text_vle (VLECODE) ALIGN(0x08): {&lt;BR /&gt; *(.text)&lt;BR /&gt; *(.text_vle)&lt;BR /&gt; }&lt;BR /&gt; .rodata (CONST) : {&lt;BR /&gt; *(.rdata)&lt;BR /&gt; *(.rodata)&lt;BR /&gt; }&lt;BR /&gt; .ctors : {}&lt;BR /&gt; .dtors : {}&lt;BR /&gt; extab : {}&lt;BR /&gt; extabindex : {}&lt;BR /&gt; } &amp;gt; internal_flash&lt;BR /&gt; &lt;BR /&gt; GROUP : {&lt;BR /&gt; &lt;BR /&gt; .Caldata_RAM ALIGN(0x1000) : {}&lt;BR /&gt; } &amp;gt; ccp_data_ram&lt;/P&gt;&lt;P&gt;.__app_version LOAD (0x0017E700) : {} &amp;gt;app_version&lt;BR /&gt; .__initialized_intc_handlertable LOAD (0x0017E800) : {} &amp;gt;isr_vectors_table &lt;BR /&gt; &lt;BR /&gt; GROUP : {&lt;BR /&gt; &lt;BR /&gt; .data : {}&lt;BR /&gt; .sdata : {}&lt;BR /&gt; .sbss : {}&lt;BR /&gt; .sdata2 : {}&lt;BR /&gt; .sbss2 : {}&lt;BR /&gt; .bss : {}&lt;BR /&gt; } &amp;gt; internal_ram&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;/* Freescale CodeWarrior compiler address designations */&lt;/P&gt;&lt;P&gt;_stack_addr = ADDR(stack)+SIZEOF(stack);&lt;BR /&gt;_stack_end = ADDR(stack);&lt;BR /&gt;_heap_addr = ADDR(heap);&lt;BR /&gt;_heap_end = ADDR(heap)+SIZEOF(heap);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* Exceptions Handlers Location (used in Exceptions.c IVPR initialization)*/&lt;/P&gt;&lt;P&gt;EXCEPTION_HANDLERS = ADDR(exception_handlers);&lt;/P&gt;&lt;P&gt;/* L2 SRAM Location (used for L2 SRAM initialization) */&lt;/P&gt;&lt;P&gt;L2SRAM_LOCATION = 0x40000000;&lt;/P&gt;&lt;P&gt;============================================================&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jan 2018 01:43:25 GMT</pubDate>
    <dc:creator>明伟张</dc:creator>
    <dc:date>2018-01-10T01:43:25Z</dc:date>
    <item>
      <title>APP Project  LCF file configuration about __initialized_intc_handlertable</title>
      <link>https://community.nxp.com/t5/MPC5xxx/APP-Project-LCF-file-configuration-about-initialized-intc/m-p/776084#M11252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a problem about the APP project LCF &amp;nbsp;file configuration&amp;nbsp;about __initialized_intc_handlertable for bootloader function,the mcu is 5606b,please help me check the LCF configuration.thanks a lot.&lt;/P&gt;&lt;P&gt;compiler have the warnning:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="微信截图_20180109153144.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/58307iE8DA5D268FE8C99A/image-size/large?v=v2&amp;amp;px=999" role="button" title="微信截图_20180109153144.png" alt="微信截图_20180109153144.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;LCF configuration as follows:&lt;/P&gt;&lt;P&gt;=======================================================================&lt;/P&gt;&lt;P&gt;/* lcf file for MPC560xB processors */&lt;BR /&gt;/* */&lt;BR /&gt;/* 1 MB Flash, 80KB SRAM */&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MEMORY&lt;BR /&gt;{&lt;BR /&gt; resetvector: org = 0x00018000, len = 0x00000008&lt;BR /&gt; init: org = 0x00018020, len = 0x00000FE0 &lt;BR /&gt; exception_handlers: org = 0x00019000, len = 0x00001000&lt;BR /&gt; internal_flash: org = 0x0001A000, len = 0x00164700 &lt;BR /&gt; app_version: org = 0x0017E700, len = 0x00000100&lt;BR /&gt; isr_vectors_table: org = 0x0017E800, len = 0x00001800&lt;/P&gt;&lt;P&gt;internal_ram: org = 0x40000000, len = 0x00012000&lt;BR /&gt; ccp_data_ram: org = 0x40012000, len = 0x00002000&lt;BR /&gt; heap : org = 0x40014000, len = 0x00001FF0 &lt;BR /&gt; stack : org = 0x40016000, len = 0x00001FF0&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* This will ensure the rchw and reset vector are not stripped by the linker */&lt;BR /&gt;FORCEACTIVE { "bam_rchw" "bam_resetvector" }&lt;/P&gt;&lt;P&gt;SECTIONS&lt;BR /&gt;{&lt;BR /&gt; .__bam_bootarea LOAD (0x00018000): {} &amp;gt; resetvector&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .init LOAD (0x00018020) : {}&lt;BR /&gt; .init_vle (VLECODE) LOAD (_e_init) : {&lt;BR /&gt; *(.init)&lt;BR /&gt; *(.init_vle)&lt;BR /&gt; }&lt;BR /&gt; } &amp;gt; init&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .ivor_branch_table (VLECODE) LOAD (0x00019000) : {}&lt;BR /&gt; .__exception_handlers (VLECODE) LOAD (_e_ivor_branch_table) : {} &lt;BR /&gt; } &amp;gt; exception_handlers&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .text : {} &lt;BR /&gt; .text_vle (VLECODE) ALIGN(0x08): {&lt;BR /&gt; *(.text)&lt;BR /&gt; *(.text_vle)&lt;BR /&gt; }&lt;BR /&gt; .rodata (CONST) : {&lt;BR /&gt; *(.rdata)&lt;BR /&gt; *(.rodata)&lt;BR /&gt; }&lt;BR /&gt; .ctors : {}&lt;BR /&gt; .dtors : {}&lt;BR /&gt; extab : {}&lt;BR /&gt; extabindex : {}&lt;BR /&gt; } &amp;gt; internal_flash&lt;BR /&gt; &lt;BR /&gt; GROUP : {&lt;BR /&gt; &lt;BR /&gt; .Caldata_RAM ALIGN(0x1000) : {}&lt;BR /&gt; } &amp;gt; ccp_data_ram&lt;/P&gt;&lt;P&gt;.__app_version LOAD (0x0017E700) : {} &amp;gt;app_version&lt;BR /&gt; .__initialized_intc_handlertable LOAD (0x0017E800) : {} &amp;gt;isr_vectors_table &lt;BR /&gt; &lt;BR /&gt; GROUP : {&lt;BR /&gt; &lt;BR /&gt; .data : {}&lt;BR /&gt; .sdata : {}&lt;BR /&gt; .sbss : {}&lt;BR /&gt; .sdata2 : {}&lt;BR /&gt; .sbss2 : {}&lt;BR /&gt; .bss : {}&lt;BR /&gt; } &amp;gt; internal_ram&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;/* Freescale CodeWarrior compiler address designations */&lt;/P&gt;&lt;P&gt;_stack_addr = ADDR(stack)+SIZEOF(stack);&lt;BR /&gt;_stack_end = ADDR(stack);&lt;BR /&gt;_heap_addr = ADDR(heap);&lt;BR /&gt;_heap_end = ADDR(heap)+SIZEOF(heap);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/* Exceptions Handlers Location (used in Exceptions.c IVPR initialization)*/&lt;/P&gt;&lt;P&gt;EXCEPTION_HANDLERS = ADDR(exception_handlers);&lt;/P&gt;&lt;P&gt;/* L2 SRAM Location (used for L2 SRAM initialization) */&lt;/P&gt;&lt;P&gt;L2SRAM_LOCATION = 0x40000000;&lt;/P&gt;&lt;P&gt;============================================================&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2018 01:43:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/APP-Project-LCF-file-configuration-about-initialized-intc/m-p/776084#M11252</guid>
      <dc:creator>明伟张</dc:creator>
      <dc:date>2018-01-10T01:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: APP Project  LCF file configuration about __initialized_intc_handlertable</title>
      <link>https://community.nxp.com/t5/MPC5xxx/APP-Project-LCF-file-configuration-about-initialized-intc/m-p/776085#M11253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you got the solution for this issue? I am facing the same for my CodeWarrior. Same 3 warnings as yours, wondering if you or someone can help on this please.&lt;/P&gt;&lt;P&gt;Appreciated the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mohammed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2019 06:03:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/APP-Project-LCF-file-configuration-about-initialized-intc/m-p/776085#M11253</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-06-25T06:03:50Z</dc:date>
    </item>
  </channel>
</rss>

