<?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>MPC5xxx中的主题 Re: EMIOS Initialization issues in MPC5604s</title>
    <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666210#M7488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the support.&lt;/P&gt;&lt;P&gt;I have checked eMIOS configuration by using debugger,it is configured properly.&lt;/P&gt;&lt;P&gt;Also not used&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;UCDIS register within an initialization.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;But&amp;nbsp;&lt;/SPAN&gt;the Issue is &amp;nbsp;LED is Blinks and OFF still.&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;Can you send me example code for &lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;initialization of eMIOS Channels.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Thanks in Advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="border: 0px;"&gt;Regards&lt;/P&gt;&lt;P style="border: 0px;"&gt;Mohan raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 May 2017 04:01:13 GMT</pubDate>
    <dc:creator>mhogun</dc:creator>
    <dc:date>2017-05-30T04:01:13Z</dc:date>
    <item>
      <title>EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666208#M7486</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;&lt;/P&gt;&lt;P&gt;I am using MPC5604s controller.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using EMIOS0 Channel 23 as Modulus Counter Buffered mode.To generate 125Hz frequency.&lt;/P&gt;&lt;P&gt;Below is my configurations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Disable prescaler */&lt;BR /&gt; EMIOS_0.CH[CounterBus].CCR.B.UCPEN = 0;&lt;BR /&gt; &lt;BR /&gt; /* Period = 8000(0-7999) clocks (8 msec) */&lt;BR /&gt; EMIOS_0.CH[23].CADR.R = 7999;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Modulus Counter Buffered (MCB) */&lt;BR /&gt; EMIOS_0.CH[23].CCR.B.MODE = 0x50;&lt;BR /&gt; &lt;BR /&gt; /* Use internal counter as time base */&lt;BR /&gt; EMIOS_0.CH[23].CCR.B.BSL = 0x03;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Set channel prescaler to divide by 1 */&lt;BR /&gt; EMIOS_0.CH[23].CCR.B.UCPRE = 0x00;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Enable prescaler */&lt;BR /&gt; EMIOS_0.CH[23].CCR.B.UCPEN = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Freeze channel counting when in debug mode */&lt;BR /&gt; EMIOS_0.CH[23].CCR.B.FREN =1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using EMIOS0 Channel 21 in OPWMB mode.&lt;/P&gt;&lt;P&gt;Below&amp;nbsp;line is used to disable the channel 21 in initialization function.&lt;/P&gt;&lt;P&gt;EMIOS_0.UCDIS.R |= (((uint32_t) 0x01 &amp;lt;&amp;lt; 21));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following line is used to set the PWM with 0% duty cycle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EMIOS_0.CH[21].CADR.R = 7999;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; EMIOS_0.CH[21].CBDR.R = 7999;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*Enable&amp;nbsp;&lt;SPAN&gt; channel 21 */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;EMIOS_0.UCDIS.R &amp;amp;= (~((uint32_t) 0x01 &amp;lt;&amp;lt; &lt;SPAN&gt;21&lt;/SPAN&gt;));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; /* Use Counter Bus A */&lt;BR /&gt; EMIOS_0.CH[21].CCR.B.BSL = 0x00;&lt;BR /&gt; &lt;BR /&gt; /* Polarity-leading edge sets output/trailing clears */&lt;BR /&gt; EMIOS_0.CH[21].CCR.B.EDPOL = 0x01;&lt;BR /&gt; &lt;BR /&gt; /* Mode is OPWM Buffered */&lt;BR /&gt; EMIOS_0.CH[21].CCR.B.MODE = 0x60;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Enable Output Update as it was disabled in pwm_init */&lt;BR /&gt; EMIOS_0.OUDR.R &amp;amp;= (~((uint32_t) 0x01 &amp;lt;&amp;lt; 21));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Channel 21 is connected to the LED.&lt;/P&gt;&lt;P&gt;The Issue is My LED is Blinks and OFF when i use the above configurations .&lt;/P&gt;&lt;P&gt;I want to Turn OFF my LED when i load below values to the both&amp;nbsp;&lt;SPAN&gt;CADR and&amp;nbsp;CBDR.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;EMIOS_0.CH[21].CADR.R = 7999;&lt;BR /&gt;EMIOS_0.CH[21].CBDR.R = 7999;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me to resolve the above issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mohan raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 May 2017 14:58:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666208#M7486</guid>
      <dc:creator>mhogun</dc:creator>
      <dc:date>2017-05-28T14:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666209#M7487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure of the issue.&lt;/P&gt;&lt;P&gt;Assuming the EDPOL=1 then setting&lt;/P&gt;&lt;P&gt;EMIOS_0.CH[21].CADR.R = 7999;&lt;/P&gt;&lt;P&gt;EMIOS_0.CH[21].CBDR.R = 7999;&lt;/P&gt;&lt;P&gt;will produce 0% duty. Output is set low.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you set&lt;/P&gt;&lt;P&gt;EMIOS_0.CH[21].CADR.R = 0;&lt;/P&gt;&lt;P&gt;EMIOS_0.CH[21].CBDR.R = 7999;&lt;/P&gt;&lt;P&gt;100% duty is generated. Output is set high.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check if the eMIOS channel is configured properly using a debugger. Also try to do not use UCDIS register within an initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 11:18:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666209#M7487</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2017-05-29T11:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666210#M7488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the support.&lt;/P&gt;&lt;P&gt;I have checked eMIOS configuration by using debugger,it is configured properly.&lt;/P&gt;&lt;P&gt;Also not used&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;UCDIS register within an initialization.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;But&amp;nbsp;&lt;/SPAN&gt;the Issue is &amp;nbsp;LED is Blinks and OFF still.&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;Can you send me example code for &lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;initialization of eMIOS Channels.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Thanks in Advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="border: 0px;"&gt;Regards&lt;/P&gt;&lt;P style="border: 0px;"&gt;Mohan raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 May 2017 04:01:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666210#M7488</guid>
      <dc:creator>mhogun</dc:creator>
      <dc:date>2017-05-30T04:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666211#M7489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AN2865 (&lt;A href="http://cache.freescale.com/files/32bit/doc/app_note/AN2865.pdf"&gt;&lt;SPAN style="color: windowtext; text-decoration: none;"&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="http://cache.freescale.com/files/32bit/doc/app_note/AN2865.pdf" target="test_blank"&gt;http://cache.freescale.com/files/32bit/doc/app_note/AN2865.pdf&lt;/A&gt;) shows eMIOS OPWMB setting.&lt;/P&gt;&lt;P&gt;This demo code is also located in CodeWarrior 2.x installation, see it in [CW_installation]\(CodeWarrior_Examples)\560xS-CW\eMIOS-OPWM\. It works well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 May 2017 06:26:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666211#M7489</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2017-05-30T06:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666212#M7490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked the Sample code and also the referred the&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;AN2865 document.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I am still getting the issue,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I will once again explain the issue,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border: 0px; font-size: 14px;"&gt;I am using EMIOS0 Channel 23 as Modulus Counter Buffered mode.To generate 125Hz frequency.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;The &lt;SPAN style="color: #3d3d3d;"&gt;EMIOS0 &lt;/SPAN&gt;Channel 21&amp;nbsp;use&amp;nbsp;&lt;SPAN style="color: #3d3d3d;"&gt; EMIOS0 Channel 23 (Use Counter Bus A).&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="color: #3d3d3d;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;The &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d;"&gt;EMIOS0 &lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Channel 21 &amp;nbsp;is used as OPWMB Mode&amp;nbsp;connected to the LED.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;When i load the any value(example:10,100,200)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt; for the first time&amp;nbsp;&lt;SPAN&gt;to the&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;CADR register, the eMIOS gives the spike output.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;The LED blinks for the first time and OFF.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;When i load the any value or same as above &amp;nbsp;value (first time loaded value)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt; for the second time&amp;nbsp;&lt;SPAN&gt;to the&amp;nbsp;&amp;nbsp;CADR register, the eMIOS gives the constant output.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;The LED&amp;nbsp;is ON constantly.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;The issue is eMIOS gives the spike output when we load the value for the first time.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;&lt;SPAN&gt;This scenario happens for all the eMIOS0 and &lt;SPAN style="background-color: #ffffff;"&gt;eMIOS1&amp;nbsp;&lt;/SPAN&gt;channels&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN style="background-color: transparent; color: #51626f;"&gt;Kindly&lt;/SPAN&gt;&lt;SPAN style="color: #51626f;"&gt;&lt;SPAN&gt;&amp;nbsp;support me to solve the issue.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;Thanks in Advance&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;With Regards&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;Mohanraj&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f;"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jun 2017 12:47:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666212#M7490</guid>
      <dc:creator>mhogun</dc:creator>
      <dc:date>2017-06-02T12:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666213#M7491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hi Petr,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Please support to resolve the above mentioned issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;Thanks in Advance&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;With Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;Mohanraj&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 04:39:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666213#M7491</guid>
      <dc:creator>mhogun</dc:creator>
      <dc:date>2017-06-13T04:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: EMIOS Initialization issues in MPC5604s</title>
      <link>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666214#M7492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to use the FORCMB and enable global prescaler in last step during the initialization. This could help to not having first pulse.&lt;/P&gt;&lt;P&gt;See more in attached example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:28:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MPC5xxx/EMIOS-Initialization-issues-in-MPC5604s/m-p/666214#M7492</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2017-06-13T13:28:00Z</dc:date>
    </item>
  </channel>
</rss>

