<?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 Re: CodeWarrior 6.1 Go to macro declaration error in Classic/Legacy CodeWarrior</title>
    <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157849#M2487</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I would recommend you to submit a service request for that.&lt;BR /&gt;&lt;BR /&gt;Click &lt;A href="https://www.freescale.com/webapp/servicerequest.create_SR.framework?regFlag=fromOpenSR" rel="nofollow" target="_blank"&gt;here&lt;/A&gt; to submit a service request.&lt;BR /&gt;&lt;BR /&gt;Make sure to attach a reproducible project and installed product information to the service request.&lt;BR /&gt;To generate the required information:&lt;BR /&gt;- Start CodeWarrior&lt;BR /&gt;- Open the project&lt;BR /&gt;- Select "Help" -&amp;gt; "Pack and Go" and follow instructions on the screen.&lt;BR /&gt;&lt;BR /&gt;Attach the generated .zip file to the SR.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;CrasyCat&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 May 2008 16:21:38 GMT</pubDate>
    <dc:creator>CrasyCat</dc:creator>
    <dc:date>2008-05-22T16:21:38Z</dc:date>
    <item>
      <title>CodeWarrior 6.1 Go to macro declaration error</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157848#M2486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;When a macro is conditionally compiled and the file holding the declaration is not open, the right-click-and-Go-to-macro-declaration feature works correctly. If the file holding the macro is already open, the IDE chooses the last declaration in the file&amp;nbsp;instead of the correct one. This is with the "Generate Browser Data From Compiler" option selected.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In my project, the compile switches are defined in a file set on a path unique to each target.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Here's an example:&lt;/DIV&gt;&lt;DIV&gt;/* active high relay control on port E */&lt;BR /&gt;#if(LocalRelayDrive == 1)&lt;BR /&gt;#define SetLocalRelayOn&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTED |= 1&lt;BR /&gt;#define SetLocalRelayOff&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTED &amp;amp;= ~0X01&lt;BR /&gt;#define GetLocalRelayStatus&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (PTED &amp;amp; 1)&lt;BR /&gt;/* active low relay control on port E */&lt;BR /&gt;#elif(LocalRelayDrive == 0)&lt;BR /&gt;#define SetLocalRelayOff&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTED |= 1&lt;BR /&gt;#define SetLocalRelayOn&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTED &amp;amp;= ~0X01&lt;BR /&gt;#define GetLocalRelayStatus&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (!(PTED &amp;amp; 1))&lt;BR /&gt;/* multiple relay control&amp;nbsp; on port B */&lt;BR /&gt;#elif(LocalRelayDrive == 3)&lt;BR /&gt;#define ShutdownRelayOff&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTBD |= (1&amp;lt;&amp;lt;2) // brown, shutdown&lt;BR /&gt;#define ShutdownRelayOn&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTBD &amp;amp;= ~(1&amp;lt;&amp;lt;2)&lt;BR /&gt;#define SetLocalRelayOff&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTBD &amp;amp;= ~(1&amp;lt;&amp;lt;1) // gray, short = setback&lt;BR /&gt;#define SetLocalRelayOn&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PTBD |= (1&amp;lt;&amp;lt;1) // open = occupied&lt;BR /&gt;#endif&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks.&lt;/DIV&gt;&lt;DIV&gt;Rod Bristol&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 23:12:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157848#M2486</guid>
      <dc:creator>RodBristol</dc:creator>
      <dc:date>2008-05-21T23:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: CodeWarrior 6.1 Go to macro declaration error</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157849#M2487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I would recommend you to submit a service request for that.&lt;BR /&gt;&lt;BR /&gt;Click &lt;A href="https://www.freescale.com/webapp/servicerequest.create_SR.framework?regFlag=fromOpenSR" rel="nofollow" target="_blank"&gt;here&lt;/A&gt; to submit a service request.&lt;BR /&gt;&lt;BR /&gt;Make sure to attach a reproducible project and installed product information to the service request.&lt;BR /&gt;To generate the required information:&lt;BR /&gt;- Start CodeWarrior&lt;BR /&gt;- Open the project&lt;BR /&gt;- Select "Help" -&amp;gt; "Pack and Go" and follow instructions on the screen.&lt;BR /&gt;&lt;BR /&gt;Attach the generated .zip file to the SR.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;CrasyCat&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2008 16:21:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157849#M2487</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2008-05-22T16:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: CodeWarrior 6.1 Go to macro declaration error</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157850#M2488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Packed and sent. Thanks.&lt;/DIV&gt;&lt;DIV&gt;Rod Bristol&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2008 18:41:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/CodeWarrior-6-1-Go-to-macro-declaration-error/m-p/157850#M2488</guid>
      <dc:creator>RodBristol</dc:creator>
      <dc:date>2008-05-22T18:41:53Z</dc:date>
    </item>
  </channel>
</rss>

