<?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: How to reset EPC5200 programmatically. in Processor Expert Software</title>
    <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1367421#M4898</link>
    <description>&lt;P&gt;Thanks for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've just resolved it using watchdog, works for me.&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Alex&lt;/P&gt;</description>
    <pubDate>Fri, 05 Nov 2021 16:08:19 GMT</pubDate>
    <dc:creator>AlexVM</dc:creator>
    <dc:date>2021-11-05T16:08:19Z</dc:date>
    <item>
      <title>How to reset EPC5200 programmatically.</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1364690#M4892</link>
      <description>&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;I am a novice with this processor, but got a task recently: reset&amp;nbsp;EPC5200 programmatically.&lt;/P&gt;&lt;P&gt;Under 'reset' I mean - force to execute bootloader same way as it occurs on power cycle.&lt;/P&gt;&lt;P&gt;Here is the code I've got from team lead:&lt;/P&gt;&lt;P&gt;&amp;nbsp;// Turn ethernet off&lt;BR /&gt;Ethernet::Close();&lt;/P&gt;&lt;P&gt;//mask all interrupts&lt;BR /&gt;ICTL-&amp;gt;cprimmsk = 0x1FFFF;&lt;/P&gt;&lt;P&gt;//wait to make sure everything is off&lt;BR /&gt;SystemUtils::MSleep(1000);&lt;/P&gt;&lt;P&gt;void(*localProgramAddressFPtr)(void) = reinterpret_cast&amp;lt;void(*)(void)&amp;gt;(0xFFF00000 + 0x100);&lt;/P&gt;&lt;P&gt;//call the reset routine&lt;BR /&gt;(*localProgramAddressFPtr)();&lt;/P&gt;&lt;P&gt;But instead of rebooting, the application freezes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am doing wrong? Might there be a different way to accomplish? Some standard API call etc.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Alex&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 20:35:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1364690#M4892</guid>
      <dc:creator>AlexVM</dc:creator>
      <dc:date>2021-11-01T20:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset EPC5200 programmatically.</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1364796#M4893</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thank you for contacting us.&lt;/P&gt;&lt;P&gt;Please let us know your NXP chip part number, thus we can assign right engineer for your issue.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jun Zhang&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 03:40:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1364796#M4893</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2021-11-02T03:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset EPC5200 programmatically.</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1365248#M4894</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;If I understand correctly, it is SPC5200CBV400B.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 15:41:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1365248#M4894</guid>
      <dc:creator>AlexVM</dc:creator>
      <dc:date>2021-11-02T15:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset EPC5200 programmatically.</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1367419#M4897</link>
      <description>&lt;P&gt;The MPC5200 hardware does not have possibility to produce the same reset as POREST. It is possible to produce HRESET assertion only.&lt;/P&gt;
&lt;P&gt;The simplest is the following for HRESET assertion:&lt;/P&gt;
&lt;P&gt;produce Machine check exception and HRESET assertion&lt;/P&gt;
&lt;P&gt;produce HREST using watchdog.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 16:04:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1367419#M4897</guid>
      <dc:creator>Pavel</dc:creator>
      <dc:date>2021-11-05T16:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset EPC5200 programmatically.</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1367421#M4898</link>
      <description>&lt;P&gt;Thanks for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've just resolved it using watchdog, works for me.&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Alex&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 16:08:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-reset-EPC5200-programmatically/m-p/1367421#M4898</guid>
      <dc:creator>AlexVM</dc:creator>
      <dc:date>2021-11-05T16:08:19Z</dc:date>
    </item>
  </channel>
</rss>

