<?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 could I run PWM on MKW01Z128 pin PTC1 in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768726#M46771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sergii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry but I don't use the APIs so can't help more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;uTasker developer and supporter (+5'000 hours experience on +60 Kinetis derivatives in +80 product developments)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2018 16:17:56 GMT</pubDate>
    <dc:creator>mjbcswitzerland</dc:creator>
    <dc:date>2018-04-13T16:17:56Z</dc:date>
    <item>
      <title>How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768717#M46762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H1 style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 2rem;"&gt;I found info about FTM_DRV_Pwm, but it couldn't find all structures for my platform. I&amp;nbsp;enabled&amp;nbsp;#define FSL_FEATURE_SOC_FTM_COUNT (1) and got a lot of errors:&lt;/H1&gt;&lt;P&gt;&lt;/P&gt;&lt;H1 style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 2rem;"&gt;Error[Pe020]: identifier "FTM_Type" is undefined&amp;nbsp; &lt;/H1&gt;&lt;P&gt;....&lt;/P&gt;&lt;H1 style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 2rem;"&gt;What is wrong?&lt;/H1&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 19:38:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768717#M46762</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-05T19:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768718#M46763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I found other libs for this and started to use it, but can't still run PWM on the pin PTC1 (in the doc it uses TPM module 0 Channel 0). I use the next code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tpm_general_config_t tpmCfg = &lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .isDBGMode = true,//0,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .isGlobalTimeBase = 0,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .isTriggerMode = 0,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .isStopCountOnOveflow = 0,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .isCountReloadOnTrig = true,//0,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .triggerSource = kTpmTrigSel8//kTpmTrigSel0, &lt;BR /&gt;};&lt;BR /&gt;tpm_pwm_param_t param = &lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .mode = kTpmEdgeAlignedPWM,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .edgeMode = kTpmHighTrue,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .uFrequencyHZ = 100000U,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .uDutyCyclePercent = 50U,&lt;BR /&gt; }; &lt;BR /&gt;tpm_status_t status;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PORT_HAL_SetMuxMode(PORTC,1u,kPortMuxAlt2);&lt;BR /&gt;TPM_DRV_SetClock(TPM0_IDX, kTpmClockSourceExternalClk, kTpmDividedBy2 );&lt;BR /&gt;status = TPM_DRV_Init(TPM0_IDX, &amp;amp;tpmCfg);&lt;BR /&gt;status = TPM_DRV_PwmStart(TPM0_IDX, &amp;amp;param, 0);&lt;BR /&gt;...&lt;/P&gt;&lt;P&gt;What is wrong? I don't see any output on&amp;nbsp;&lt;SPAN&gt;PTC1, all time 0 Volts.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 11:06:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768718#M46763</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-06T11:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768719#M46764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Sergii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TPM0_CH0 is &lt;STRONG&gt;ALT 4&lt;/STRONG&gt; on PTC1 and not ALT 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Free Open Source solution: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fgithub.com%2FuTasker%2FuTasker-Kinetis" rel="nofollow" target="_blank"&gt;https://github.com/uTasker/uTasker-Kinetis&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Working project in 15 minutes video: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fyoutu.be%2FK8ScSgpgQ6M" rel="nofollow" target="_blank"&gt;https://youtu.be/K8ScSgpgQ6M&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For better, faster, cheaper product developments consider the uTasker developer's version, professional Kinetis support, one-on-one training and complete fast-track project solutions to set you apart from the herd : &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fsupport.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/support.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:15:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768719#M46764</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2018-04-06T18:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768720#M46765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,it was helped. Now works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2018 16:52:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768720#M46765</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-12T16:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768721#M46766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have other issue. I setuped PWM on frequency 50 Hz.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can control&amp;nbsp;duty cycle from 0 to 100% with&amp;nbsp;precision 1. For example 0,1,2,3,4 ..100.&lt;/P&gt;&lt;P&gt;Can I control t wit better&amp;nbsp;precision?&amp;nbsp;For example 0,2%.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2018 17:00:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768721#M46766</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-12T17:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768722#M46767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sergii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The PWM precision depends on the counter match value used to generate your base frequency. Since you have a low frequency the counter match will be a high value (optimally it should be set - using an appropriate clock pre-scaler - to be a large value as close to 0xffff as possible. This will allow high precision (in the best case approaching 0.002%).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore, check the counter match value presently used, optimise it if possible, and then make use of the fine control (in case the API that you are presently using is restricting it).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;uTasker developer and supporter (+5'000 hours experience on +60 Kinetis derivatives in +80 product developments)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 00:02:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768722#M46767</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2018-04-13T00:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768723#M46768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response. Could you give some example how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;пт, 13 апр. 2018 г., 3:02 mjbcswitzerland &amp;lt;admin@community.nxp.com&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;P&gt;NXP Community&lt;/P&gt;&lt;P&gt;&amp;lt;https://community.freescale.com/resources/statics/1000/35400-NXP-Community-Email-banner-600x75.jpg&amp;gt;&lt;/P&gt;&lt;P&gt;Re: How could I run PWM on MKW01Z128 pin PTC1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Mark Butcher&lt;/P&gt;&lt;P&gt;&amp;lt;https://community.nxp.com/people/mjbcswitzerland?et=watches.email.thread&amp;gt;&lt;/P&gt;&lt;P&gt;in &lt;STRONG&gt;Kinetis Microcontrollers&lt;/STRONG&gt; - View the full discussion&lt;/P&gt;&lt;P&gt;&amp;lt;https://community.nxp.com/message/1005043?commentID=1005043&amp;amp;et=watches.email.thread#comment-1005043&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 00:06:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768723#M46768</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-13T00:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768724#M46769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See what value is being written to the FTMx_MOD register (this is your time base).&lt;BR /&gt;Then you can control your output channel's FTM_CV register with value from 0...FTMx_MOD value and its resolution is given by (1/FTMx_MOD * 100)%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;uTasker developer and supporter (+5'000 hours experience on +60 Kinetis derivatives in +80 product developments)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 10:26:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768724#M46769</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2018-04-13T10:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768725#M46770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the response.&lt;/P&gt;&lt;P&gt;Is it possible to do it from API?&lt;/P&gt;&lt;P&gt;I use&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;TPM_DRV_* API to set up PWM...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 15:58:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768725#M46770</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-13T15:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768726#M46771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sergii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry but I don't use the APIs so can't help more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;uTasker developer and supporter (+5'000 hours experience on +60 Kinetis derivatives in +80 product developments)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;SPAN&gt;Kinetis: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.utasker.com%2Fkinetis.html" rel="nofollow" target="_blank"&gt;http://www.utasker.com/kinetis.html&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 16:17:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768726#M46771</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2018-04-13T16:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768727#M46772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And one more things.&lt;/P&gt;&lt;P&gt;How is possible to run watch dog for MKW01Z128? I tried lib&amp;nbsp;#include "fsl_wdog_driver.h", but It can't find&amp;nbsp;&lt;SPAN&gt;WDOG_Type structure, it looks like this structure is not exist for this mcu.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H1 style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 2rem;"&gt;&lt;/H1&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 16:56:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768727#M46772</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-13T16:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: How could I run PWM on MKW01Z128 pin PTC1</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768728#M46773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and how can I use sleep mode? (couldn't find API)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 17:20:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/How-could-I-run-PWM-on-MKW01Z128-pin-PTC1/m-p/768728#M46773</guid>
      <dc:creator>sergiiparadiuk</dc:creator>
      <dc:date>2018-04-13T17:20:49Z</dc:date>
    </item>
  </channel>
</rss>

