<?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 CW 6.3 9S08AW60 data/code placement in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/CW-6-3-9S08AW60-data-code-placement/m-p/484869#M12541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;I'm using CW 6.3 for the 9s08AW60. I'm having some trouble which I believe is linked to the fact that I am including a large chunk of data (boot code for another device, all 29k of it!) and the compiler doesn't like it . How can I place it such that the linked code is contiguous and this data is placed at the end? I've had a couple of link errors the latest of which is L1907: Fixup overflow to send_buffer_to_tts, to BOOT_CODE type 1, at offset 0x25. I know I haven't included much info here but I'm sure it's down to non contiguous code.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Dec 2015 11:47:03 GMT</pubDate>
    <dc:creator>stevechurch</dc:creator>
    <dc:date>2015-12-15T11:47:03Z</dc:date>
    <item>
      <title>CW 6.3 9S08AW60 data/code placement</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/CW-6-3-9S08AW60-data-code-placement/m-p/484869#M12541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;I'm using CW 6.3 for the 9s08AW60. I'm having some trouble which I believe is linked to the fact that I am including a large chunk of data (boot code for another device, all 29k of it!) and the compiler doesn't like it . How can I place it such that the linked code is contiguous and this data is placed at the end? I've had a couple of link errors the latest of which is L1907: Fixup overflow to send_buffer_to_tts, to BOOT_CODE type 1, at offset 0x25. I know I haven't included much info here but I'm sure it's down to non contiguous code.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Dec 2015 11:47:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/CW-6-3-9S08AW60-data-code-placement/m-p/484869#M12541</guid>
      <dc:creator>stevechurch</dc:creator>
      <dc:date>2015-12-15T11:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: CW 6.3 9S08AW60 data/code placement</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/CW-6-3-9S08AW60-data-code-placement/m-p/484870#M12542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are you including the large data ?&lt;/P&gt;&lt;P&gt;is it part of your code application as other source files (.c, .h, etc ..) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The L1907 is a linker issue. Below some info about this error:&lt;/P&gt;&lt;H1&gt;&lt;A class="anchor" name="pageL1907"&gt;&lt;/A&gt;L1907: Fixup overflow in &amp;lt;Object&amp;gt;, type &amp;lt;objType&amp;gt; at offset &amp;lt;Address&amp;gt;&lt;/H1&gt;&lt;P&gt;[DISABLE, INFORMATION, WARNING, &lt;STRONG&gt;ERROR&lt;/STRONG&gt;]&lt;/P&gt;&lt;H2&gt;&lt;A class="anchor" name="description"&gt;&lt;/A&gt;Description&lt;/H2&gt;&lt;P&gt;An illegal relocation of an object is detected in the object file &amp;lt;Object&amp;gt; at address &amp;lt;Address&amp;gt;. The type of the object is given in &amp;lt;objType&amp;gt;.&lt;/P&gt;&lt;H2&gt;&lt;A class="anchor" name="tips"&gt;&lt;/A&gt;Tips&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;Check the relocation at that address. The offset may be out of range for this relocation type. If not it may be caused by a corrupt object file.&lt;/LI&gt;&lt;LI&gt;Check if all objects are allocated in the correct area. Is the object correctly declared?&lt;/LI&gt;&lt;LI&gt;This error might occur if the zero paged variables are allocated out of the zero page.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some case the customer can decide to don't care about some messages.&lt;/P&gt;&lt;P&gt;Be careful with this process ...&lt;/P&gt;&lt;P&gt;There are several messages:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Information,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Warning,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Error,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Fatal,&lt;/P&gt;&lt;P&gt;Only error and fatal ones stop the build operation.&lt;/P&gt;&lt;P&gt;Now for some messages (most of them) you can change the type.&lt;/P&gt;&lt;P&gt;For instance you can move an Information message to Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The L1907 can be redefined.&lt;/P&gt;&lt;P&gt;You can move it to warning, information or disabled.&lt;/P&gt;&lt;P&gt;How to do that `?&lt;/P&gt;&lt;P&gt;Open project properties + Linker for HC08 and click on message.&lt;/P&gt;&lt;P&gt;Under Error, select L1907 and move it to warning.&lt;/P&gt;&lt;P&gt;Now the L1907 will generate a Warning message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Pascal&lt;BR /&gt;NXP Technical Support&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 15:18:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/CW-6-3-9S08AW60-data-code-placement/m-p/484870#M12542</guid>
      <dc:creator>trytohelp</dc:creator>
      <dc:date>2015-12-16T15:18:34Z</dc:date>
    </item>
  </channel>
</rss>

