<?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: MCF52259: Software Reset hangs in ColdFire/68K Microcontrollers and Processors</title>
    <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176167#M6871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If anyone else is interested I have found a solution.&lt;/P&gt;&lt;P&gt;My projects has the CLKMOD1,0 strapped to boot with the relaxation osc turn on and the pll turned off.&lt;/P&gt;&lt;P&gt;During startup I switch to the external crystal oscillator and turn the pll on.&amp;nbsp; I thought that when a WDT reset occurs that&lt;/P&gt;&lt;P&gt;maybe there is some contention with the external oscillator running and the relaxation trying to turn on.&amp;nbsp; I did notice that when the reset occured that I lost system clock.&amp;nbsp; Anyway, I added some code in my WDT isr to switch the clock back to&lt;/P&gt;&lt;P&gt;the relaxation oscillator before issuing the reset request. and it is working.&lt;/P&gt;&lt;P&gt;Here is the code I used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void WDT_ISR(void)&lt;BR /&gt;{&lt;BR /&gt;uint32&amp;nbsp;Count;&lt;/P&gt;&lt;P&gt;&amp;nbsp;MCF_SCM_CWCR = 3;&amp;nbsp;// clear interrupt flag&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;MCF_CLOCK_OCHR = 0x80;&amp;nbsp;&amp;nbsp;&amp;nbsp; //turn on relaxation osc&lt;BR /&gt;&amp;nbsp; &amp;nbsp;MCF_CLOCK_CCLR = 0x01;&amp;nbsp;&amp;nbsp;&amp;nbsp; //switch to relaxation&lt;BR /&gt;&amp;nbsp;&amp;nbsp; MCF_CLOCK_OCLR &amp;amp;= 0x7F;&amp;nbsp;&amp;nbsp;&amp;nbsp; //turn off crystal&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; MCF_CLOCK_SYNCR &amp;amp;= ~(MCF_CLOCK_SYNCR_CLKSRC | MCF_CLOCK_SYNCR_PLLEN);// disable and turn off pll&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;for (Count = 14968; Count &amp;gt; 0; Count--)&amp;nbsp; // 1mS delay&lt;BR /&gt;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; // set the soft reset bit&lt;BR /&gt;&amp;nbsp;&amp;nbsp;MCF_RCM_RCR |= MCF_RCM_RCR_SOFTRST;// request software reset&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately this cannot be done when using the BWT.&lt;/P&gt;&lt;P&gt;Hope this helps someone else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 May 2010 19:55:29 GMT</pubDate>
    <dc:creator>JeffB</dc:creator>
    <dc:date>2010-05-07T19:55:29Z</dc:date>
    <item>
      <title>MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176161#M6865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial, Helvetica, sans-serif'; font-size: 2;"&gt;I want to perform a software reset with a MCF52259 using following code:&lt;BR /&gt;MCF_RCM_RCR = MCF_RCM_RCR_SOFTRST | MCF_RCM_RCR_FRCRSTOUT;&lt;BR /&gt;After this command the coldfire "hangs": It does not restart and there is even no reaction on a further hardware reset. Just disconnecting the power supply reactivates the controller.(&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Arial, Helvetica, sans-serif'; font-size: 2;"&gt;The same command works with a MCF52211.)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial, Helvetica, sans-serif'; font-size: 2;"&gt;I am using a M52259DEMOMCU Board for this test.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial, Helvetica, sans-serif'; font-size: 2;"&gt;I have also tryed to perform a reset using the Backup Watchdog Timer - with the same result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial, Helvetica, sans-serif'; font-size: 2;"&gt;Any ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 13:58:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176161#M6865</guid>
      <dc:creator>Maleon</dc:creator>
      <dc:date>2009-04-27T13:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176162#M6866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I find the reset sequence works fine if not running under the debugger/BDM.&amp;nbsp; If I execute the reset sequence under the debugger/BDM, I have to remove power from the board as you say.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On our target boards (with no BDM), the sequence always works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On your M52269DEMOMCU, if you remove the debugger cable (USB-B) and power the board from the USB mini-B only, does the reset sequence work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-- Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 20:05:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176162#M6866</guid>
      <dc:creator>RichTestardi</dc:creator>
      <dc:date>2009-04-27T20:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176163#M6867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your prompt reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Due to unknown reasons, the software reset blocks on my M52259DEMO Board, even if I power it from J7 (or from USB mini-B).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But according to your suggestions i tryed the same on a M52259EVB Board - and here it works!&lt;/P&gt;&lt;P&gt;There seems to be a hardware problem with the OSBDM interface (or with my DEMO Board). But since we will not have such a interface on our target board the problem is solved for me (Although I will try to find the reason, why it does not work on my DEMO Board)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks:&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 15:01:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176163#M6867</guid>
      <dc:creator>Maleon</dc:creator>
      <dc:date>2009-04-28T15:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176164#M6868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having the same problem with a reset hangup and I am not using a Freescale board.&amp;nbsp; I am using our own design, runnning without any debugger connected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried both the Software Watchdog and the Backup Watchdog Timer and in both case, the system will reset if the&lt;/P&gt;&lt;P&gt;watchdog times out but it will not recover from the reset. Even pulsing the Reset line will not reset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has any ideas I would greatly appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 18:56:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176164#M6868</guid>
      <dc:creator>JeffB</dc:creator>
      <dc:date>2010-05-05T18:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176165#M6869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;What are you setting your CLKMOD[1:0] pins to?&lt;/P&gt;&lt;P&gt;Do you have a 10kohm pull-up on the ColdFire XTAL?&lt;/P&gt;&lt;P&gt;Did you initialize the ICR08 register?&lt;/P&gt;&lt;P&gt;Did you unmask the URML mask8 (bit 9)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I found on my M52259EVB which lets me play around with many option running code to initialize core watchdog&lt;/P&gt;&lt;P&gt;BOOTCLK&amp;nbsp;&amp;nbsp;&amp;nbsp; XTAL&amp;nbsp;&amp;nbsp;&amp;nbsp; Result&lt;/P&gt;&lt;P&gt;00&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; boots OK but doesn't recover from WDT or reset button&lt;/P&gt;&lt;P&gt;00&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; No boot in bypass mode as I don't have clock for this mode&lt;/P&gt;&lt;P&gt;01&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OK&lt;/P&gt;&lt;P&gt;01&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OK&lt;/P&gt;&lt;P&gt;10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OK&lt;/P&gt;&lt;P&gt;10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; No boot in bypass mode as I don't have clock for this mode&lt;/P&gt;&lt;P&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;OK&lt;/P&gt;&lt;P&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OK = Power On Reset work.....Watchdog timer interrupt called where I do a software reset of MCU and that works, and reset button works&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Weird part is if I comment out the ICR08 and masking of the IMRL for watchdog, then&lt;/P&gt;&lt;P&gt;BOOTCLK&amp;nbsp;&amp;nbsp;&amp;nbsp; XTAL&amp;nbsp;&amp;nbsp;&amp;nbsp; Result&lt;/P&gt;&lt;P&gt;00&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; boots OK but doesn't recover from WDT BUT does recover with reset button&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached the main.c file with the source code and basically added the above comments to the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 04:23:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176165#M6869</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2010-05-06T04:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176166#M6870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well this blows.&amp;nbsp; Guess what mode I'm using. Which is the same mode used on &amp;nbsp;the MCF52259DEMO.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you comment out the ICR08 and IMRL, how are you getting to the WDT ISR?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you post your WDT Interrupt service routine?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David, have you tried this with the BWT?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 19:01:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176166#M6870</guid>
      <dc:creator>JeffB</dc:creator>
      <dc:date>2010-05-06T19:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176167#M6871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If anyone else is interested I have found a solution.&lt;/P&gt;&lt;P&gt;My projects has the CLKMOD1,0 strapped to boot with the relaxation osc turn on and the pll turned off.&lt;/P&gt;&lt;P&gt;During startup I switch to the external crystal oscillator and turn the pll on.&amp;nbsp; I thought that when a WDT reset occurs that&lt;/P&gt;&lt;P&gt;maybe there is some contention with the external oscillator running and the relaxation trying to turn on.&amp;nbsp; I did notice that when the reset occured that I lost system clock.&amp;nbsp; Anyway, I added some code in my WDT isr to switch the clock back to&lt;/P&gt;&lt;P&gt;the relaxation oscillator before issuing the reset request. and it is working.&lt;/P&gt;&lt;P&gt;Here is the code I used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void WDT_ISR(void)&lt;BR /&gt;{&lt;BR /&gt;uint32&amp;nbsp;Count;&lt;/P&gt;&lt;P&gt;&amp;nbsp;MCF_SCM_CWCR = 3;&amp;nbsp;// clear interrupt flag&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;MCF_CLOCK_OCHR = 0x80;&amp;nbsp;&amp;nbsp;&amp;nbsp; //turn on relaxation osc&lt;BR /&gt;&amp;nbsp; &amp;nbsp;MCF_CLOCK_CCLR = 0x01;&amp;nbsp;&amp;nbsp;&amp;nbsp; //switch to relaxation&lt;BR /&gt;&amp;nbsp;&amp;nbsp; MCF_CLOCK_OCLR &amp;amp;= 0x7F;&amp;nbsp;&amp;nbsp;&amp;nbsp; //turn off crystal&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; MCF_CLOCK_SYNCR &amp;amp;= ~(MCF_CLOCK_SYNCR_CLKSRC | MCF_CLOCK_SYNCR_PLLEN);// disable and turn off pll&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;for (Count = 14968; Count &amp;gt; 0; Count--)&amp;nbsp; // 1mS delay&lt;BR /&gt;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; // set the soft reset bit&lt;BR /&gt;&amp;nbsp;&amp;nbsp;MCF_RCM_RCR |= MCF_RCM_RCR_SOFTRST;// request software reset&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately this cannot be done when using the BWT.&lt;/P&gt;&lt;P&gt;Hope this helps someone else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 19:55:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176167#M6871</guid>
      <dc:creator>JeffB</dc:creator>
      <dc:date>2010-05-07T19:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176168#M6872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just thought I'd post up and say that I've just had this problem and Jeff's post above does indeed fix it, thanks Jeff! &lt;IMG alt=":smileytongue:" class="emoticon emoticon-smileytongue" id="smileytongue" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-tongue.gif" title="Smiley Tongue" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 May 2011 02:10:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176168#M6872</guid>
      <dc:creator>FridgeFreezer</dc:creator>
      <dc:date>2011-05-07T02:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: MCF52259: Software Reset hangs</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176169#M6873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Indeed, I am having the same problem as Jeff in regards to the BWT.&amp;nbsp; Thankfully, his fix for the WDT does work... Thanks a lot Jeff for posting!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am somewhat disappointed with Freescale in that there has been no errata on this (CLKMod 1:0 pulled low, XTAL high hsa problems with BWT and WDT)... Personally I think that it is quite important and should at least warrant an errata item in order to save someone a bunch of time on this issue...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2011 07:46:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/MCF52259-Software-Reset-hangs/m-p/176169#M6873</guid>
      <dc:creator>samsaprunoff</dc:creator>
      <dc:date>2011-05-11T07:46:37Z</dc:date>
    </item>
  </channel>
</rss>

