<?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: Linker error when trying to use interrupt vector for MC9S12DG255</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148499#M3473</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I might've solved this one myself...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made another test project that used only C (not C++)&amp;nbsp;and relocatable assembly and did not have the initialization error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll migrate C copies of the AirDragon project and see if that will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2011 07:19:14 GMT</pubDate>
    <dc:creator>AirDragon</dc:creator>
    <dc:date>2011-07-12T07:19:14Z</dc:date>
    <item>
      <title>Linker error when trying to use interrupt vector for MC9S12DG255</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148498#M3472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to generate&amp;nbsp;110Hz and 50Hz periodic interrupts so that I can run a fuzzy logic controller designed for use on a small quadrotor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've made a similar clock scheme for an advanced lab assignment that uses the ECT to generate the needed interrupts at the specified time intervals and was succesful. However, that project used asmIDE and non-relocatable assembly to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the quadrotor, I decided to try using CodeWarrior to make the program in C/C++, to which I have very little experiance with either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've managed to get a majority of the hardware requirements fullfilled, but when it comes to declaring the interrupt vector table I get a linker error: "L1822: MCU_init__fv not in C:\...\main.cpp.o not defined"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get this message even with a clean project (included) made by the startup wizard, using the same desired hardware initializations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the Device Initialization wizard, CodeWarrior 5.9.0 build 5294 Special Edition&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.S. Accidentally posted in the hardware issue forum earlier &lt;A href="http://freescale.i.lithium.com/i/smilies/16x16_smiley-indifferent.gif"&gt;&lt;IMG alt=":smileyindifferent:" class="emoticon emoticon-smileyindifferent" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-indifferent.gif" title="Smiley Indifferent" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 05:20:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148498#M3472</guid>
      <dc:creator>AirDragon</dc:creator>
      <dc:date>2011-07-12T05:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Linker error when trying to use interrupt vector for MC9S12DG255</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148499#M3473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I might've solved this one myself...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made another test project that used only C (not C++)&amp;nbsp;and relocatable assembly and did not have the initialization error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll migrate C copies of the AirDragon project and see if that will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 07:19:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148499#M3473</guid>
      <dc:creator>AirDragon</dc:creator>
      <dc:date>2011-07-12T07:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Linker error when trying to use interrupt vector for MC9S12DG255</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148500#M3474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that was the case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Aparently the Initialization Device wizard (which I think is a part of the Processor Expert) in this version of CW only works with C or assembler.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, on to other issues...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 10:23:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-error-when-trying-to-use-interrupt-vector-for-MC9S12DG255/m-p/148500#M3474</guid>
      <dc:creator>AirDragon</dc:creator>
      <dc:date>2011-07-12T10:23:04Z</dc:date>
    </item>
  </channel>
</rss>

