<?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>ColdFire/68K Microcontrollers and Processors中的主题 Software Reset of MCF5234 not working</title>
    <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368122#M12363</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am trying to soft-reset my MCF5234 with the following code, but nothing happens. The program just keeps looping and no reset is executed.&lt;/P&gt;&lt;P&gt;Does anyone encounter a similar problem?&lt;/P&gt;&lt;P&gt;Am I doing something wrong?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dirk&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;asm("&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVE $2700,SR");&lt;/P&gt;&lt;P&gt;asm("&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVEA.L #$40110000,A0");&lt;/P&gt;&lt;P&gt;asm("&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVE.B $C0,(A0)");&lt;/P&gt;&lt;P&gt;while (1) { }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2014 09:04:14 GMT</pubDate>
    <dc:creator>sirlenzelot</dc:creator>
    <dc:date>2014-11-25T09:04:14Z</dc:date>
    <item>
      <title>Software Reset of MCF5234 not working</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368122#M12363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am trying to soft-reset my MCF5234 with the following code, but nothing happens. The program just keeps looping and no reset is executed.&lt;/P&gt;&lt;P&gt;Does anyone encounter a similar problem?&lt;/P&gt;&lt;P&gt;Am I doing something wrong?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dirk&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;asm("&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVE $2700,SR");&lt;/P&gt;&lt;P&gt;asm("&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVEA.L #$40110000,A0");&lt;/P&gt;&lt;P&gt;asm("&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVE.B $C0,(A0)");&lt;/P&gt;&lt;P&gt;while (1) { }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 09:04:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368122#M12363</guid>
      <dc:creator>sirlenzelot</dc:creator>
      <dc:date>2014-11-25T09:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Software Reset of MCF5234 not working</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368123#M12364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the assembly syntax for your compiler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use gcc, and for it the assembly should be "MOVE #$2700, SR" and "MOVE.B #$C0, (A0)". Otherwise you're moving from memory location 0x2700 to the status register, and from memory location 0x00C0 to the Reset Control Register.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read this one, there might be other problems with Soft Reset:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/message/303708#303708" title="https://community.freescale.com/message/303708#303708"&gt;https://community.freescale.com/message/303708#303708&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 10:04:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368123#M12364</guid>
      <dc:creator>TomE</dc:creator>
      <dc:date>2014-11-25T10:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Software Reset of MCF5234 not working</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368124#M12365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Tom.&lt;/P&gt;&lt;P&gt;Indeed, I forgot the #s.&lt;/P&gt;&lt;P&gt;It's working now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 11:47:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/Software-Reset-of-MCF5234-not-working/m-p/368124#M12365</guid>
      <dc:creator>sirlenzelot</dc:creator>
      <dc:date>2014-11-25T11:47:40Z</dc:date>
    </item>
  </channel>
</rss>

