<?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: Pulse Width Modulator example. in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193145#M14960</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Here is a list of things you must do to start a simple PWM, you mentioned using it for Port D pins 1 and 2 which would be TPM2 so I will only talk about TPM2.&amp;nbsp; The DZ60 contains another timer, TPM1 which can use Port D pins 2-7.&amp;nbsp; Port D pin 0 would be Channel 0 and pin 1 would be Channel 1 for TPM2.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;1) Select a clock source (bits 3 &amp;amp; 4 of TPM2SC) and a prescale factor (bits 0-2 of TPM2SC), a table for this can be found on page 327 of the MC9S08DZXX data sheet there is a link to this document at the bottom of the post.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2SC = 0x09;&amp;nbsp;&amp;nbsp; // Use bus rate clock, set prescale factor of 2&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;2) Enable edge-aligned PWM through bits 4-5 of TPM2C0SC for channel 1 and TPM2C1SC for channel&amp;nbsp;2.&amp;nbsp; Also&amp;nbsp;use bits 2-3 to&amp;nbsp;set&amp;nbsp;each channel to be&amp;nbsp;high-true or low-true (High true will have the channel be always high for a 100% duty cycle). Table for this is on page 330.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2C0SC = 0x28;&amp;nbsp;&amp;nbsp; // Edge-aliged PWM, high-true&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2C1SC =&amp;nbsp;0x28;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;3) Set the peiord of the PWM signal through the modulus register,&amp;nbsp;comprised of&amp;nbsp;2 8-bit registers TPM2MODH and TPM2MODL of which the 16-bit value can be accessed through TPM2MOD.&amp;nbsp; The modulus register will be the same for all TPM2 channels (as bigmac mentioned).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2MOD = 0x1000;&amp;nbsp; // Set period to 4096 * (bus clock/2)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;4) Set the duty&amp;nbsp;cycle of the PWM signal through the&amp;nbsp;timer channel register value (16-bits made of 2 8-bit registers again), TPM2C0V.&amp;nbsp; Setting it from 0 (0%) to&amp;nbsp;the value in TPM2MOD + 1 (100%).&amp;nbsp; You can set it higher than TPM2MOD but doing so will just give you a duty cycle of 100%.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2C0V = 0x800;&amp;nbsp; // Set duty cycle to 50%&lt;/DIV&gt;&lt;DIV&gt;TPM2C1V = 0x400;&amp;nbsp; // Set duty cycle to 25%&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Now you can change TPM2MOD to change the period at any point in time and change TPM2CXV to change the duty cycle for either channel as well.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;A href="http://www.freescale.com/files/microcontrollers/doc/data_sheet/MC9S08DZ60.pdf?fsrch=1" rel="nofollow" target="_blank"&gt;http://www.freescale.com/files/microcontrollers/doc/data_sheet/MC9S08DZ60.pdf?fsrch=1&lt;/A&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by allawtterb on &lt;SPAN class="date_text"&gt;2008-02-22&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;09:57 PM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Feb 2008 05:56:17 GMT</pubDate>
    <dc:creator>allawtterb</dc:creator>
    <dc:date>2008-02-23T05:56:17Z</dc:date>
    <item>
      <title>Pulse Width Modulator example. - DEMO9S08DZ60</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193140#M14955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;SPAN&gt;Hi to all, im very new in the signals stuff, i'm using the DZ60 uC and i need to make an output modify the duty cycle of the pwm in PTD0 and output a signal and modify the frequency in the PTD1... Do you guys have an example code where you output a signal and modify the duty cycle and frequency to your will?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much!&lt;/SPAN&gt;&lt;BR /&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Added p/n to subject.&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Message Edited by NLFSJ on &lt;/SPAN&gt;&lt;SPAN class="date_text"&gt;2008-02-23&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN class="time_text"&gt;01:19 PM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 01:23:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193140#M14955</guid>
      <dc:creator>Saga</dc:creator>
      <dc:date>2008-02-22T01:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193141#M14956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;Here is a TPM used for generating a variable pulse width/period.&lt;/DIV&gt;&lt;DIV&gt;I have tried it on a DEMO9S08DZ60, and there is an oscilloscope photo in the subdirectory "source".&lt;/DIV&gt;&lt;DIV&gt;It uses the overflow interrupt and I have only included 3 different output values, but I hope it shows how it can be done.&lt;/DIV&gt;&lt;DIV&gt;Hope it can be of any use.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;Ake&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 23:28:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193141#M14956</guid>
      <dc:creator>Ake</dc:creator>
      <dc:date>2008-02-22T23:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193142#M14957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi Ake, Thanks for your help...&lt;BR /&gt;&lt;BR /&gt;However i didn't find &lt;I&gt;any&lt;/I&gt; code in the example you gave me, this is the main function:&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;void main(void) {  EnableInterrupts; /* enable interrupts */  /* include your code here */  for(;;) {    __RESET_WATCHDOG(); /* feeds the dog */  } /* loo&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;&amp;nbsp;i did see the oscilloscope image you told me, probably you did not attach the correct source... Or where are the TPM's being configured? Thats what i'm really lost...&lt;BR /&gt;&lt;BR /&gt;Thanks for helping!&lt;BR /&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 09:46:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193142#M14957</guid>
      <dc:creator>Saga</dc:creator>
      <dc:date>2020-10-29T09:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193143#M14958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hello,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Is my assumption correct that the PWM output at PTD0 will have a fixed frequency, and the output at PTD1 would have a constant duty cycle, perhaps a square wave.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If this is true, I see that&amp;nbsp;you are using different channels&amp;nbsp;for the same TPM module.&amp;nbsp; Therefore, to produce a variable frequency at PTD1, and not also affect the frequency at PTD0, will require that you use output compare interrupts to generate the variable frequency signal.&amp;nbsp; The interrupt would need to occur on each transition of the output signal.&amp;nbsp;&amp;nbsp;If the TPM module&amp;nbsp;is not&amp;nbsp;free-running,&amp;nbsp;in order to provide the required PWM frequency on the other channel. the calculation of the time&amp;nbsp;to the next interrupt will be significantly more complex.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Even more&amp;nbsp;complication would arise if the variable frequency needed to be lower than the PWM frequency.&amp;nbsp; Ultimately, the degree of complication within the ISR&amp;nbsp;is likely to&amp;nbsp;limit the maximum frequency that can be achieved.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;However, if you were to use different TPM modules for each output, this would give more flexibility, and probably result in simpler code.&amp;nbsp; In this case, the variable frequency output could utilize PWM mode, and would not require the processing of an interrupt each half-cycle of the output waveform.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;To vary the frequency, the TPM modulo value would be changed, and the pulse width also changed proportionally, to maintain a constant duty cycle.&amp;nbsp; The alteration of the modulo value would need to happen&amp;nbsp;immediately following&amp;nbsp;TPM overflow.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;Mac&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by bigmac on &lt;SPAN class="date_text"&gt;2008-02-23&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;08:06 AM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 04:52:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193143#M14958</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2008-02-23T04:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193144#M14959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi big mac, it is not a big problem, i can use different PWM to eliminate the complexity, my biggest problem here, is that i don't know how to just output a frequency through a PWM and how to output a fixed frequency... I've never done this before, do you have some sample code that just output some frequency through any PWM, I'm using a MC9S08DZ60 uC, I'm kinda newbie with all the signals stuff, i don't understand it so well...&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your help...&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 05:02:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193144#M14959</guid>
      <dc:creator>Saga</dc:creator>
      <dc:date>2008-02-23T05:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193145#M14960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Here is a list of things you must do to start a simple PWM, you mentioned using it for Port D pins 1 and 2 which would be TPM2 so I will only talk about TPM2.&amp;nbsp; The DZ60 contains another timer, TPM1 which can use Port D pins 2-7.&amp;nbsp; Port D pin 0 would be Channel 0 and pin 1 would be Channel 1 for TPM2.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;1) Select a clock source (bits 3 &amp;amp; 4 of TPM2SC) and a prescale factor (bits 0-2 of TPM2SC), a table for this can be found on page 327 of the MC9S08DZXX data sheet there is a link to this document at the bottom of the post.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2SC = 0x09;&amp;nbsp;&amp;nbsp; // Use bus rate clock, set prescale factor of 2&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;2) Enable edge-aligned PWM through bits 4-5 of TPM2C0SC for channel 1 and TPM2C1SC for channel&amp;nbsp;2.&amp;nbsp; Also&amp;nbsp;use bits 2-3 to&amp;nbsp;set&amp;nbsp;each channel to be&amp;nbsp;high-true or low-true (High true will have the channel be always high for a 100% duty cycle). Table for this is on page 330.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2C0SC = 0x28;&amp;nbsp;&amp;nbsp; // Edge-aliged PWM, high-true&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2C1SC =&amp;nbsp;0x28;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;3) Set the peiord of the PWM signal through the modulus register,&amp;nbsp;comprised of&amp;nbsp;2 8-bit registers TPM2MODH and TPM2MODL of which the 16-bit value can be accessed through TPM2MOD.&amp;nbsp; The modulus register will be the same for all TPM2 channels (as bigmac mentioned).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2MOD = 0x1000;&amp;nbsp; // Set period to 4096 * (bus clock/2)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;4) Set the duty&amp;nbsp;cycle of the PWM signal through the&amp;nbsp;timer channel register value (16-bits made of 2 8-bit registers again), TPM2C0V.&amp;nbsp; Setting it from 0 (0%) to&amp;nbsp;the value in TPM2MOD + 1 (100%).&amp;nbsp; You can set it higher than TPM2MOD but doing so will just give you a duty cycle of 100%.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;TPM2C0V = 0x800;&amp;nbsp; // Set duty cycle to 50%&lt;/DIV&gt;&lt;DIV&gt;TPM2C1V = 0x400;&amp;nbsp; // Set duty cycle to 25%&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Now you can change TPM2MOD to change the period at any point in time and change TPM2CXV to change the duty cycle for either channel as well.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;A href="http://www.freescale.com/files/microcontrollers/doc/data_sheet/MC9S08DZ60.pdf?fsrch=1" rel="nofollow" target="_blank"&gt;http://www.freescale.com/files/microcontrollers/doc/data_sheet/MC9S08DZ60.pdf?fsrch=1&lt;/A&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by allawtterb on &lt;SPAN class="date_text"&gt;2008-02-22&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;09:57 PM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 05:56:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193145#M14960</guid>
      <dc:creator>allawtterb</dc:creator>
      <dc:date>2008-02-23T05:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193146#M14961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi allawtterb,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your instructions, that's what i didn't know, how to configurate the registers!!&lt;BR /&gt;&lt;BR /&gt;You gave that little push i needed &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;BR /&gt;&lt;BR /&gt;Sorry but this is my very first time im working with signals stuff, I've experience in programming but not at so low level, thanks!&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 08:36:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193146#M14961</guid>
      <dc:creator>Saga</dc:creator>
      <dc:date>2008-02-23T08:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Pulse Width Modulator example.</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193147#M14962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to sweep the frequency from 1KHz to 2KHz ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do youn guys any example code for this.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day ahead!!!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;VenkatGV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 10:42:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Pulse-Width-Modulator-example-DEMO9S08DZ60/m-p/193147#M14962</guid>
      <dc:creator>venkateshgv</dc:creator>
      <dc:date>2014-11-18T10:42:14Z</dc:date>
    </item>
  </channel>
</rss>

