<?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 Dump Data from registers in real time in Classic/Legacy CodeWarrior</title>
    <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/Dump-Data-from-registers-in-real-time/m-p/177864#M3918</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello;&lt;/P&gt;&lt;P&gt;I'm using CSMB12 freescale microcontroller. And I used ATD to convert the result of sensors. So I have 4 registers related to outputs of the ATD&amp;nbsp; (ATDDR0L-ATDDR3L). Is there any way to save the result of out put in the real time?&lt;/P&gt;&lt;P&gt;Because when i debugg it with "True-Time simulator and real time debugger", i just can see the result when i stopped running. And i couldn't find any way to dump my registers in a seperate file in a real time.&lt;/P&gt;&lt;P&gt;Does any body have any idea? Thanks for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers;&lt;/P&gt;&lt;P&gt;Sb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 Feb 2010 10:45:04 GMT</pubDate>
    <dc:creator>Idontunderstand</dc:creator>
    <dc:date>2010-02-21T10:45:04Z</dc:date>
    <item>
      <title>Dump Data from registers in real time</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/Dump-Data-from-registers-in-real-time/m-p/177864#M3918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello;&lt;/P&gt;&lt;P&gt;I'm using CSMB12 freescale microcontroller. And I used ATD to convert the result of sensors. So I have 4 registers related to outputs of the ATD&amp;nbsp; (ATDDR0L-ATDDR3L). Is there any way to save the result of out put in the real time?&lt;/P&gt;&lt;P&gt;Because when i debugg it with "True-Time simulator and real time debugger", i just can see the result when i stopped running. And i couldn't find any way to dump my registers in a seperate file in a real time.&lt;/P&gt;&lt;P&gt;Does any body have any idea? Thanks for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers;&lt;/P&gt;&lt;P&gt;Sb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Feb 2010 10:45:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/Dump-Data-from-registers-in-real-time/m-p/177864#M3918</guid>
      <dc:creator>Idontunderstand</dc:creator>
      <dc:date>2010-02-21T10:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dump Data from registers in real time</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/Dump-Data-from-registers-in-real-time/m-p/177865#M3919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's probably some way to dump the four registers repeatedly into a file that I don't know about.&amp;nbsp; In the meantime, you might want to do something like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;//global variablesunsigned char ATDBuf[1000];unsigned short ATDBufIndex = 0;//routine to take snapshot of ATD registersunsigned char ATDSnapshot(void){    if(ATDBufIndex + 3 &amp;lt; sizeof(ATDBuf)){        ATDBuf[ATDBufIndex++] = ATDDR0L;        ATDBuf[ATDBufIndex++] = ATDDR1L;        ATDBuf[ATDBufIndex++] = ATDDR2L;        ATDBuf[ATDBufIndex++] = ATDDR3L;        return 1;    }    return 0;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you can record the registers in real time in memory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 09:27:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/Dump-Data-from-registers-in-real-time/m-p/177865#M3919</guid>
      <dc:creator>isionous</dc:creator>
      <dc:date>2020-10-29T09:27:01Z</dc:date>
    </item>
  </channel>
</rss>

