<?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: IC and Pwm problems in S12 / MagniV Microcontrollers</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536272#M12603</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Radek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to bug 1, writing to TFLG1 doesn't make any sense when TFFCA==1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meng,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so is your problem that change of output PWM frequency happens much later than the change of input frequency? It is because you made your IC sensitive to rising edges only, TCTL4 =1 , EDG0B:EDG0A = 01. And this is what you see on oscillogram: PWM frequency changes soon after rising input edge, when there's a change in time difference between two adjacent rising input edges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edward&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 13:38:21 GMT</pubDate>
    <dc:creator>kef2</dc:creator>
    <dc:date>2016-06-16T13:38:21Z</dc:date>
    <item>
      <title>IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536270#M12601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;I use IC to capture an input square wave, and then generate my output square wave by PWM model .&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;The frequency of my output is several times of the imput wave, such as 2 times, 5 times, so much as&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;60 times. I use IC to detect the rising edge and the trailing edge to get the pulse width, according this to determine the period of the PWM.&lt;/P&gt;&lt;P style="min- padding: 0px; color: #000000; font-family: Simsun; font-size: medium;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;But I found when my input wave frequency change, the output can't be change together with the input&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;wave, even the times of the frequency also can't be contain.&lt;/P&gt;&lt;P style="min- padding: 0px; color: #000000; font-family: Simsun; font-size: medium;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;Whether I need to close my PWM at the end of PWM period and enable it at the beginning of the&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;wave edge. How can I make my output wave change following the input wave change.&lt;/P&gt;&lt;P style="color: #000000; font-family: Simsun; font-size: medium;"&gt;My programme, the input and output wave are attached.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-339218"&gt;ECT.rar&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 04:57:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536270#M12601</guid>
      <dc:creator>mengalice</dc:creator>
      <dc:date>2016-06-16T04:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536271#M12602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Meng,&lt;/P&gt;&lt;P&gt;The period and duty registers for each channel are double buffered so that if they change while the channel is enabled, the change will NOT take effect until one of the following occurs:&lt;/P&gt;&lt;P&gt;• The effective period ends&lt;/P&gt;&lt;P&gt;• The counter is written (counter resets to $00)&lt;/P&gt;&lt;P&gt;• The channel is disabled&lt;/P&gt;&lt;P&gt;In this way, the output of the PWM will always be either the old waveform or the new waveform, not some variation in between. If the channel is not enabled, then writes to the period register will go directly to the latches as well as the buffer.&lt;/P&gt;&lt;P&gt;So, period and duty cycle should be automatically updated according to the last value before the end of the active period. You may try to write into PWMCNTx counter for reset counter to zero and force to load new values. The command PWME_PWME1 = 1; should not have any influence on output and you could remove it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, this description didn’t fit exactly to your measurement results and I suppose that there must be some other issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have three additional doubts related to your code:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp; The command ECT_TFLG1_C0F = 1; is not the correct way how to clear a flag – it is read/modify/write command and it will clear all currently pending flags. Please use rather ECT_TFLG1 = 0x01; or ECT_TFLG1_C0F = ECT_TFLG1_C0F_MASK; for clearing such flag. It should not cause any problem in your code, but it is still not correct. For more details, please look at application note AN2554 Clearing and Disabling Interrupt Flags &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.nxp.com%2Ffiles%2Fmicrocontrollers%2Fdoc%2Fapp_note%2FAN2554.pdf" rel="nofollow" target="_blank"&gt;http://www.nxp.com/files/microcontrollers/doc/app_note/AN2554.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp; You didn’t implement overflow interrupt for input capture. Are you sure that time2-time1 is always smaller than full timer counter period?&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp; The type of variables delaytime, aa, bb, cc and signalf is unsigned int. Are you sure that you didn’t lose any precision during calculations like signalf=delaytime*0.001*4/MUL_FREQ;?&lt;/P&gt;&lt;P&gt;0.001 is float number.&lt;/P&gt;&lt;P&gt;Please check whether any overflow or underflow cannot cause an issue.&lt;/P&gt;&lt;P&gt;Shouldn’t be better to calculate with unsigned long variables?&lt;/P&gt;&lt;P&gt;Please ensure that your formula is correct (signalf=delaytime/2500).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;aa=delaytime*0.001;&amp;nbsp;&amp;nbsp;&amp;nbsp; //16000*0.001=16&lt;/P&gt;&lt;P&gt;bb=aa*4;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //16*4=64&lt;/P&gt;&lt;P&gt;cc=bb/MUL_FREQ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //64/10=6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Radek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 12:20:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536271#M12602</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2016-06-16T12:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536272#M12603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Radek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to bug 1, writing to TFLG1 doesn't make any sense when TFFCA==1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meng,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so is your problem that change of output PWM frequency happens much later than the change of input frequency? It is because you made your IC sensitive to rising edges only, TCTL4 =1 , EDG0B:EDG0A = 01. And this is what you see on oscillogram: PWM frequency changes soon after rising input edge, when there's a change in time difference between two adjacent rising input edges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edward&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:38:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536272#M12603</guid>
      <dc:creator>kef2</dc:creator>
      <dc:date>2016-06-16T13:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536273#M12604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Radek,&lt;/P&gt;&lt;P&gt;Thanks for your help, I have modifed my programme according to your ideas. And&amp;nbsp; there are&lt;/P&gt;&lt;P&gt;serveral points need to discuss with you.&lt;/P&gt;&lt;P&gt;1. When I remove&amp;nbsp; the comment PWME_PWME1 = 1, there is no ouput，and the output appear after it added.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; So I think this command is necessary.&lt;/P&gt;&lt;P&gt;2. I have corrected the command ECT_TFLG=0X01;&lt;/P&gt;&lt;P&gt;3. I changed the format of signalf from int to float to avoid data lose. It's very important , and thank you told me this point.&lt;/P&gt;&lt;P&gt;4. Because I know the frequency range of my input is 0-200Hz, corrospending to 0-5ms,&amp;nbsp; and the ECT frequency&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; is 32M/128=1/4M ,4us, the full timer counter period is less than 2^16. Therefore, I didn't process this overfolw at present.&lt;/P&gt;&lt;P&gt;5. I add the command PWMCNT01=0X00 before I update my output.&lt;/P&gt;&lt;P&gt;6. In order to follow the input&amp;nbsp; better, I change the capture edge from rising to both rising and falling. corresponding to&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ECT_TCTL4 = 0x03;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I found the output still can't follow the change of input,&amp;nbsp; how can I do then?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Have a good time!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 10:02:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536273#M12604</guid>
      <dc:creator>mengalice</dc:creator>
      <dc:date>2016-06-21T10:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536274#M12605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Meng,&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp; The command PWME_PWME1 = 1; should stay in init_pwm() function. I do not see any reason for keeping it in Refresh_PWM() function.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp; I am sorry, but you statements “my input is 0-200Hz” and “the full timer counter period is less than 2^16” do not make sense for me for now.&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp; I am sorry for the probably confusing sentence about PWMCNTx counter. You should update period and duty cycle registers and after that write PWMCNTx counter (not before). This will reset PWM counter and force to load period and duty cycle from registers buffers. Note: Writing to the counter while the channel is enabled can cause an irregular PWM cycle to occur.&lt;/P&gt;&lt;P&gt;4.&amp;nbsp;&amp;nbsp;&amp;nbsp; Please do not mix automatic and manual flag clearing. Please comment out either command ECT_TSCR1_TFFCA = 1; in initialize_ect() function or command ECT_TFLG=0X01; in capture() ISR according Edward’s recommendation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Radek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 19:10:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536274#M12605</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2016-06-21T19:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536275#M12606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Radek,&lt;/P&gt;&lt;P&gt;I have modified my programme. But I find the output still can't follow the change of input.&lt;/P&gt;&lt;P&gt;when the input period change from 30ms to 50ms the output frequency-multiplier signal can't&lt;/P&gt;&lt;P&gt;keep 3 times of the input.&lt;/P&gt;&lt;P&gt;The wave and programme attached.&lt;/P&gt;&lt;P&gt;In addition, whether the output can track the input&amp;nbsp; signal in-phase, how to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;Meng&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="11.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/21505iE26FC0496640467D/image-size/large?v=v2&amp;amp;px=999" role="button" title="11.PNG" alt="11.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="捕获.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/21517i1F7ED4E1428F2A7C/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.PNG" alt="捕获.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 07:16:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536275#M12606</guid>
      <dc:creator>mengalice</dc:creator>
      <dc:date>2016-06-22T07:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536276#M12607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Meng,&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;PWMCNT01 contains PWMCNT0 and PWMCNT1 register, therefore, you should write a 16bit number.&lt;/LI&gt;&lt;LI&gt;Your calculations are still confusing for me. &lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;signalf=delaytime/1000*4;&lt;/P&gt;&lt;P&gt;PWMPER01=signalf*1000/10;&lt;/P&gt;&lt;P&gt;This code generates the same result for 0~999, 1000~1999, 2000~2999,… delaytime.&lt;/P&gt;&lt;P&gt;So, there is a chance that both 30ms and 50ms input signal generates the same PWM period.&lt;/P&gt;&lt;P&gt;Is it correct, that you want PWM period = high or low time of input signal/2.5?&lt;/P&gt;&lt;P&gt;In that case please don’t use that division by 1000.&lt;/P&gt;&lt;P&gt;The code:&lt;/P&gt;&lt;P&gt;signalf=delaytime*4;&lt;/P&gt;&lt;P&gt;PWMPER01=signalf/10;&lt;/P&gt;&lt;P&gt;should give you result without losing accuracy. Be aware, that maximum delaytime must be smaller than 16383 otherwise you have to change signalf type to unsigned long and retype delaytime value to unsigned long prior signalf calculation. For example:&lt;/P&gt;&lt;P&gt;unsigned long signalf;&lt;/P&gt;&lt;P&gt;signalf=((unsigned long) delaytime) * 4;&lt;/P&gt;&lt;P&gt;PWMPER01=(unsigned int) (signalf/10);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Radek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 11:02:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536276#M12607</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2016-06-22T11:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536277#M12608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;Hi RadekS,&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;I modified my programme,but the problem remains.&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;I reply the email to &lt;SPAN&gt;&lt;A href="mailto:admin@community.freescale.com"&gt;admin@community.freescale.com&lt;/A&gt;&lt;/SPAN&gt;, it was undelivered.&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;Can you give me your email I want to send my programme to&amp;nbsp; you and contract you directly.&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;Thanks ,&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;Have a nice day!&lt;/P&gt;&lt;P style="color: #000000; text-indent: 0px;"&gt;Meng&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2016 02:54:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536277#M12608</guid>
      <dc:creator>mengalice</dc:creator>
      <dc:date>2016-07-01T02:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536278#M12609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Meng,&lt;/P&gt;&lt;P&gt;You may attach code here when you switch editor into advanced mode:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Use advanced editor.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/4206i228EC802D2691E57/image-size/large?v=v2&amp;amp;px=999" role="button" title="Use advanced editor.png" alt="Use advanced editor.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and then click on Attach link:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Community attachment.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/29566i63396A64E12171D6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Community attachment.png" alt="Community attachment.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to share something which is not public, please create a ticket:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-329745"&gt;How to submit a new question for NXP Support&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As last option, you may send it to me at &lt;A href="mailto:radek.sestak@nxp.com"&gt;radek.sestak@nxp.com&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Radek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2016 07:40:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536278#M12609</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2016-07-01T07:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: IC and Pwm problems</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536279#M12610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Radek,&lt;/P&gt;&lt;P&gt; I can't fine the buttons ''use advanced editor' and "attach" on my reply page &lt;A _jive_internal="true" href="https://community.nxp.com/inbox" title="https://community.nxp.com/inbox"&gt;https://community.nxp.com/inbox&lt;/A&gt; .&lt;/P&gt;&lt;P&gt;My page is as follow:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/36703i1B3A029A0C204880/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.PNG" alt="1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have already sent you an email, I don't know whether you have received it, I haven't received your reply.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This address is right ?&lt;A href="mailto:right?‘radek.sestak@nxp.com’"&gt;‘&lt;/A&gt;&lt;SPAN style="color: #2989c5;"&gt;&lt;A href="mailto:right?radek.sestak@nxp.com’"&gt;right?radek.sestak@nxp.com’&lt;/A&gt;&lt;A href="mailto:right?radek.sestak@nxp.com’"&gt;radek.sestak@nxp.com’&lt;/A&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jul 2016 09:41:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/IC-and-Pwm-problems/m-p/536279#M12610</guid>
      <dc:creator>mengalice</dc:creator>
      <dc:date>2016-07-10T09:41:23Z</dc:date>
    </item>
  </channel>
</rss>

