<?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: Debug point failure</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182763#M6263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it's absolute assembly.&amp;nbsp; In part, it's just because this is how I've always done it, and I'm comfortable doing so.&amp;nbsp; Barring some quirks when starting a new project in the new CodeWarrior, it's been very reliable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspected the linker and compiler options should be absent, since neither is used, but it puzzled me that there were C and C++ options, so I just went with it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried checking that box, but it didn't fix the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, there's a directive "ABSENTRY _Startup"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was added when we created the project.&amp;nbsp; I didn't even notice it until now.&amp;nbsp; It didn't show&amp;nbsp;up in my older&amp;nbsp;projects for the HCS08, but&amp;nbsp;we're still pretty new to both CodeWarrior 10.1 and this newer&amp;nbsp;S08.&amp;nbsp;&amp;nbsp;After doing some research, it looks like&amp;nbsp;that directive&amp;nbsp;needs to&amp;nbsp;be there for the debugger to know where to start operation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jul 2012 21:38:25 GMT</pubDate>
    <dc:creator>meiermat</dc:creator>
    <dc:date>2012-07-30T21:38:25Z</dc:date>
    <item>
      <title>Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182756#M6256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&amp;nbsp; I found this exact problem in the CodeWarrior for Coldfire forum, but I can't follow the solution becuase my project options are quite different.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using CodeWarrior 10.1.0 with the PE Micro Multilink and an S08DZ60.&amp;nbsp;&amp;nbsp;The project is written in&amp;nbsp;assembly, with no C support.&amp;nbsp; When I go to debug the project, I get the following message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Error stopping at main.&lt;/P&gt;&lt;P&gt;Reason:&amp;nbsp; Target request failed:&amp;nbsp; Failed to set breakpoint.&lt;/P&gt;&lt;P&gt;Continue?"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the options Yes or No.&amp;nbsp; Hitting no naturally aborts the process.&amp;nbsp; However, hitting yes proceeds to load the target board with the software and enter debugging mode, and everything runs fine after that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since this isn't hindering my ability to write and&amp;nbsp;debug software,&amp;nbsp;this isn't a pressing issue.&amp;nbsp; It's more an annoyance, but&amp;nbsp;I'd like to solve the problem mostly because it's been nagging me and I haven't been able to find a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 00:29:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182756#M6256</guid>
      <dc:creator>meiermat</dc:creator>
      <dc:date>2012-07-25T00:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182757#M6257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you check if you have debug information generated for your project source files?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The box &lt;STRONG&gt;&lt;EM&gt;Strip Symbolic Information&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp; should not be checked in &lt;STRONG&gt;&lt;EM&gt;S08 Linker&lt;/EM&gt;&lt;/STRONG&gt; &amp;gt; &lt;EM&gt;&lt;STRONG&gt;Output&lt;/STRONG&gt;&lt;/EM&gt; project settings panel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The option -NoDebugInfo should not be specified in the Other Flags edit box inside of the &lt;STRONG&gt;&lt;EM&gt;S08 Compiler&lt;/EM&gt;&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;&lt;EM&gt;General&lt;/EM&gt;&lt;/STRONG&gt; panel.&lt;/P&gt;&lt;P&gt;You may also want to check the &lt;STRONG&gt;&lt;EM&gt;All options&lt;/EM&gt;&lt;/STRONG&gt; list box in the &lt;EM&gt;&lt;STRONG&gt;S08 Compiler&lt;/STRONG&gt;&lt;/EM&gt; Panel. The option -NoDebugInfo should not be specified there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CrasyCat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 17:11:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182757#M6257</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2012-07-25T17:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182758#M6258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I'm just looking in the wrong places.&amp;nbsp; Where do I find the S08 Linker and Compiler&amp;nbsp;panels?&amp;nbsp; I'm looking under the Project menu, and going to Properties.&amp;nbsp; Under that panel I get the following sidebar:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Resource&lt;/P&gt;&lt;P&gt;Builders&lt;/P&gt;&lt;P&gt;C/C++ Build&lt;/P&gt;&lt;P&gt;C/C++ General&lt;/P&gt;&lt;P&gt;Linked Resources&lt;/P&gt;&lt;P&gt;Processor Expert&lt;/P&gt;&lt;P&gt;Project References&lt;/P&gt;&lt;P&gt;Refactoring History&lt;/P&gt;&lt;P&gt;Resource Filters&lt;/P&gt;&lt;P&gt;Run/Debug Settings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C/C++ Build brings up a menu, which&amp;nbsp;gives me a settings item, but there's no Linker or Compiler options.&amp;nbsp; Also, why would there be any compiler or linker information for this project?&amp;nbsp; As it is, I'm confused as to why there are C/C++ options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 20:32:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182758#M6258</guid>
      <dc:creator>meiermat</dc:creator>
      <dc:date>2012-07-25T20:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182759#M6259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Open the Settings item. This presents a view with a vast array of tools settings, including those for the compiler and linker.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 20:58:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182759#M6259</guid>
      <dc:creator>J2MEJediMaster</dc:creator>
      <dc:date>2012-07-25T20:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182760#M6260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the array of options for the Settings item, under the Tool Settings tab.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Messages&lt;/P&gt;&lt;P&gt;Host&lt;/P&gt;&lt;P&gt;General&lt;/P&gt;&lt;P&gt;Disassembler&lt;/P&gt;&lt;P&gt;--Output&lt;/P&gt;&lt;P&gt;--Input&lt;/P&gt;&lt;P&gt;HCS08 Assembler&lt;/P&gt;&lt;P&gt;--Input&lt;/P&gt;&lt;P&gt;--Language&lt;/P&gt;&lt;P&gt;----Compatibility Modes&lt;/P&gt;&lt;P&gt;--Output&lt;/P&gt;&lt;P&gt;----Configure Listing File&lt;/P&gt;&lt;P&gt;--Code Generation&lt;/P&gt;&lt;P&gt;--General&lt;/P&gt;&lt;P&gt;Burner&lt;/P&gt;&lt;P&gt;--General&lt;/P&gt;&lt;P&gt;--Output&lt;/P&gt;&lt;P&gt;----Configure S-Records&lt;/P&gt;&lt;P&gt;--Input&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still nothing about the compiler or linker.&amp;nbsp; I looked through all the items, and don't see any options for -no debug info.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also see tabs for Build Steps, Build Artifact, Binary Parsers, Error Parsers, and Build Tool Versions, but they're pretty bare.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe I'm in the wrong set of menus?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2012 21:53:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182760#M6260</guid>
      <dc:creator>meiermat</dc:creator>
      <dc:date>2012-07-26T21:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182761#M6261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It took a while for me to recall that you are using a pure assembly language program. Not only that, but from experiments I conducted in making an assembly project with the New Project wizard, you have made an absolute assembly language program, right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I make an absolute assembly language project, I get a build configuration layout similar to yours. There's no compiler or linker items because absolute assembly does not use a compiler or linker. So you cannot generate debug information through those choices, because they are simply not there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having said that, now look under the Language item. There should be a sub-item termed Code Generation. When you select that, check the option Absolute debug information to assembly source file. I think that should get you what you need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2012 21:37:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182761#M6261</guid>
      <dc:creator>J2MEJediMaster</dc:creator>
      <dc:date>2012-07-27T21:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182762#M6262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Matt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This may be totally off the track, but did you place an ABSENTRY directive within your ASM file?&amp;nbsp; This affects debugging operations only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mac&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jul 2012 22:03:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182762#M6262</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2012-07-29T22:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Debug point failure</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182763#M6263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it's absolute assembly.&amp;nbsp; In part, it's just because this is how I've always done it, and I'm comfortable doing so.&amp;nbsp; Barring some quirks when starting a new project in the new CodeWarrior, it's been very reliable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspected the linker and compiler options should be absent, since neither is used, but it puzzled me that there were C and C++ options, so I just went with it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried checking that box, but it didn't fix the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, there's a directive "ABSENTRY _Startup"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was added when we created the project.&amp;nbsp; I didn't even notice it until now.&amp;nbsp; It didn't show&amp;nbsp;up in my older&amp;nbsp;projects for the HCS08, but&amp;nbsp;we're still pretty new to both CodeWarrior 10.1 and this newer&amp;nbsp;S08.&amp;nbsp;&amp;nbsp;After doing some research, it looks like&amp;nbsp;that directive&amp;nbsp;needs to&amp;nbsp;be there for the debugger to know where to start operation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 21:38:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Debug-point-failure/m-p/182763#M6263</guid>
      <dc:creator>meiermat</dc:creator>
      <dc:date>2012-07-30T21:38:25Z</dc:date>
    </item>
  </channel>
</rss>

