<?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>LPC Microcontrollers中的主题 Re: CTIMER2 PWM LPC54018JBD208</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821403#M32878</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's correct, the CTIMER_MATCH3 is used to store the PWM cycle, so it can't be used a a PWM ouput.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alexis Andalon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Nov 2018 17:41:16 GMT</pubDate>
    <dc:creator>Alexis_A</dc:creator>
    <dc:date>2018-11-16T17:41:16Z</dc:date>
    <item>
      <title>CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821398#M32873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Somebody could help me I'm using PWM on CTIMER2 but it doesn't work. I'm using this configuration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;#include "fsl_debug_console.h"&lt;BR /&gt;#include "board.h"&lt;BR /&gt;#include "fsl_ctimer.h"&lt;/DIV&gt;&lt;DIV&gt;#include "pin_mux.h"&lt;BR /&gt;#include &amp;lt;stdbool.h&amp;gt;&lt;BR /&gt;/*******************************************************************************&lt;BR /&gt;&amp;nbsp;* Definitions&lt;BR /&gt;&amp;nbsp;******************************************************************************/&lt;BR /&gt;#define CTIMER CTIMER2&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; /* Timer 1 */&lt;BR /&gt;#define CTIMER_MAT_OUT kCTIMER_Match_3 /* Match output 1 */&lt;BR /&gt;#define CTIMER_CLK_FREQ CLOCK_GetFreq(kCLOCK_BusClk)&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;BR /&gt;&amp;nbsp;* Prototypes&lt;BR /&gt;&amp;nbsp;******************************************************************************/&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;BR /&gt;* Variables&lt;BR /&gt;******************************************************************************/&lt;BR /&gt;volatile uint32_t g_pwmPeriod = 0U;&lt;BR /&gt;volatile uint32_t g_pulsePeriod = 0U;&lt;/DIV&gt;&lt;DIV&gt;/*******************************************************************************&lt;BR /&gt;&amp;nbsp;* Code&lt;BR /&gt;&amp;nbsp;******************************************************************************/&lt;BR /&gt;status_t CTIMER_GetPwmPeriodValue(uint32_t pwmFreqHz, uint8_t dutyCyclePercent, uint32_t timerClock_Hz)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Calculate PWM period match value */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; g_pwmPeriod = (timerClock_Hz / pwmFreqHz) - 1;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Calculate pulse width match value */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (dutyCyclePercent == 0)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; g_pulsePeriod = g_pwmPeriod + 1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; g_pulsePeriod = (g_pwmPeriod * (100 - dutyCyclePercent)) / 100;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return kStatus_Success;&lt;BR /&gt;}&lt;/DIV&gt;&lt;DIV&gt;/*!&lt;BR /&gt;&amp;nbsp;* @brief Main function&lt;BR /&gt;&amp;nbsp;*/&lt;BR /&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctimer_config_t config;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; uint32_t srcClock_Hz;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; uint32_t timerClock;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Init hardware*/&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* attach 12 MHz clock to FLEXCOMM0 (debug console) */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOCK_AttachClk(BOARD_DEBUG_UART_CLK_ATTACH);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Enable the asynchronous bridge */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SYSCON-&amp;gt;ASYNCAPBCTRL = 1;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Use 12 MHz clock for some of the Ctimers */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOCK_AttachClk(kFRO12M_to_ASYNC_APB);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BOARD_InitPins();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BOARD_BootClockFROHF96M();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BOARD_InitDebugConsole();&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* CTimer0 counter uses the AHB clock, some CTimer1 modules use the Aysnc clock */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; srcClock_Hz = CTIMER_CLK_FREQ;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRINTF("CTimer example to generate a PWM signal\r\n");&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CTIMER_GetDefaultConfig(&amp;amp;config);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timerClock = srcClock_Hz / (config.prescale + 1);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CTIMER_Init(CTIMER, &amp;amp;config);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* Get the PWM period match value and pulse width match value of 20Khz PWM signal with 20% dutycycle */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CTIMER_GetPwmPeriodValue(20000, 20, timerClock);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CTIMER_SetupPwmPeriod(CTIMER, CTIMER_MAT_OUT, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CTIMER_StartTimer(CTIMER);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while (1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;}&lt;/DIV&gt;&lt;DIV&gt;Which is the example code of simple_pwm&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Using other CTIMER like CTIMER3 or CTIMER2 it works, I have to use CTIMER1, CTIMER2, and CTIMER3 for 9 PWMs. Any idea?&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Best Regards&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Nov 2018 18:51:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821398#M32873</guid>
      <dc:creator>oscarniño</dc:creator>
      <dc:date>2018-11-09T18:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821399#M32874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar Niño,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overall your code seems fine, but could you please share how are you configuring the pin?&lt;/P&gt;&lt;P&gt;Also are you using the OM40006?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you plan to use the multiple channels of each timer as outputs to the pwm, you need to know that the channels using the same&amp;nbsp;timer will have the same frequency, you can only change the duty cycle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alexis Andalón&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2018 21:44:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821399#M32874</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2018-11-12T21:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821400#M32875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;Hi Alexis&lt;/P&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;I'm using my own board but I got the OM40006 board too. I need to use 6 or 7 PWM outputs, I have use TIMER 1 Match 0,1,2 and Timer 3 Match 0, 1. Justo Timer 2 doesn't work.&lt;/P&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;Here how I configured pins:&lt;/P&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Conf_Pins}.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/74921iAE0C164E548D7940/image-size/large?v=v2&amp;amp;px=999" role="button" title="Conf_Pins&amp;amp;#125;.jpg" alt="Conf_Pins&amp;amp;#125;.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; padding: 0px; margin: 0px;"&gt;&amp;nbsp;and:&lt;/P&gt;&lt;DIV&gt;CTIMER_GetPwmPeriodValue(20000, (duty_cycle_blue_SL*single_led_state), timerClock);&lt;BR /&gt;&amp;nbsp;CTIMER_SetupPwmPeriod(CTIMER1, kCTIMER_Match_0, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;CTIMER_StartTimer(CTIMER1);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;CTIMER_GetPwmPeriodValue(20000, (duty_cycle_green_SL*single_led_state), timerClock);&lt;BR /&gt;&amp;nbsp;CTIMER_SetupPwmPeriod(CTIMER1, kCTIMER_Match_1, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;CTIMER_StartTimer(CTIMER1);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;CTIMER_GetPwmPeriodValue(20000, (duty_cycle_red_SL*single_led_state), timerClock);&lt;BR /&gt;&amp;nbsp;CTIMER_SetupPwmPeriod(CTIMER1, kCTIMER_Match_2, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;CTIMER_StartTimer(CTIMER1);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;CTIMER_GetPwmPeriodValue(20000, duty_cycle_blue, timerClock);&lt;BR /&gt;&amp;nbsp;CTIMER_SetupPwmPeriod(CTIMER2, kCTIMER_Match_3, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;CTIMER_StartTimer(CTIMER2);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;CTIMER_GetPwmPeriodValue(20000, duty_cycle_red, timerClock);&lt;BR /&gt;&amp;nbsp;CTIMER_SetupPwmPeriod(CTIMER3, kCTIMER_Match_0, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;CTIMER_StartTimer(CTIMER3);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;CTIMER_GetPwmPeriodValue(20000, duty_cycle_green, timerClock);&lt;BR /&gt;&amp;nbsp;CTIMER_SetupPwmPeriod(CTIMER3, kCTIMER_Match_1, g_pwmPeriod, g_pulsePeriod, false);&lt;BR /&gt;&amp;nbsp;CTIMER_StartTimer(CTIMER3);&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Thanks so much for your time.&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Best Regards&lt;/DIV&gt;&lt;DIV&gt;Oscar Niño&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2018 23:16:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821400#M32875</guid>
      <dc:creator>oscarniño</dc:creator>
      <dc:date>2018-11-14T23:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821401#M32876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I saw that for the CTIMER2 you're using the MATCH3 register, in the reference manual 17.6.12 in the Table.340 there's&amp;nbsp;&lt;/P&gt;&lt;P&gt;the next note:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/76311i6E92AAEBBE0FC3B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And also in the SDK, if you check the CTIMER_SetupPwmPeriod if the MATCH 3 is used the function return fail.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/76359iF2A9826F77F5F824/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the OM4006 there's no output pin for the PWM, so if you want to have more&amp;nbsp;PWM, I suggest to check the SCTIMER. There's also an example about it in the SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alexis Andalon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 16:32:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821401#M32876</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2018-11-16T16:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821402#M32877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis Andalon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much, I didn't see that part of code,&amp;nbsp; so I supposse there si no way to use match 3 Chanel on my own board rigth? My interest is because that means we have to do a modification of PCB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 17:19:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821402#M32877</guid>
      <dc:creator>oscarniño</dc:creator>
      <dc:date>2018-11-16T17:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821403#M32878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's correct, the CTIMER_MATCH3 is used to store the PWM cycle, so it can't be used a a PWM ouput.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Alexis Andalon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 17:41:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821403#M32878</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2018-11-16T17:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: CTIMER2 PWM LPC54018JBD208</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821404#M32879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Alexis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 17:47:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/CTIMER2-PWM-LPC54018JBD208/m-p/821404#M32879</guid>
      <dc:creator>oscarniño</dc:creator>
      <dc:date>2018-11-16T17:47:19Z</dc:date>
    </item>
  </channel>
</rss>

