<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>PWM of nRF52805</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/72742/pwm-of-nrf52805</link><description>Dear all: Recently, I was debugging nrf52805 by custom PCB, using sdk17.00, I enabled PWM, frequency of 4kHz, to drive 4kHz passive buzzer, encountered a problem: The buzzer seems to have a strong noise, as if it was interrupted by something. We analyzed</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 15 Apr 2021 07:56:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/72742/pwm-of-nrf52805" /><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/304997?ContentTypeID=1</link><pubDate>Thu, 15 Apr 2021 07:56:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c5aa49cc-1892-4060-bfda-c3a813fee47c</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Great!!&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To elaborate a bit more for anyone else that might be seeing this issue:&amp;nbsp;&amp;nbsp;&lt;span&gt;HFXO is automatically used when you&amp;#39;re using the radio. The chip will switch between using HFINT and HFXO based on the power requirement unless the HFXO is manually started. Starting the HFXO manually will always keep it on. The consequences of this is added power consumption. This might not be a significant drawback if you&amp;#39;re already using PWM. You could try only enabling HFXO clock when you use PWM and then stop it after you&amp;#39;re done using PWM.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;strong&gt;If you don&amp;#39;t use the Softdevice&lt;/strong&gt;, then you can Start and Stop the HFXO by writing directly to the register:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Start:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// Start clock for accurate frequencies
NRF_CLOCK-&amp;gt;TASKS_HFCLKSTART = 1; 
// Wait for clock to start
while(NRF_CLOCK-&amp;gt;EVENTS_HFCLKSTARTED == 0) ;&lt;/pre&gt;&lt;/p&gt;
&lt;div&gt;&lt;a href="https://devzone.nordicsemi.com/support-private/support/230903"&gt;&lt;/a&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Stop:&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_CLOCK-&amp;gt;TASK_HFCLKSTOP = 1;
&lt;/pre&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;strong&gt;If you use the Softdevice&lt;/strong&gt;, then you can Start and Stop the HFXO by requesting and releasing the clock:&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Request:&lt;/div&gt;
&lt;div&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    err_code = sd_clock_hfclk_request();
    APP_ERROR_CHECK(err_code);

    uint32_t hfclk_is_running = 0;

    while (!hfclk_is_running)
    {
        APP_ERROR_CHECK(sd_clock_hfclk_is_running(&amp;amp;hfclk_is_running) );
    }&lt;/pre&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Release:&lt;/div&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    err_code = sd_clock_hfclk_release();
    APP_ERROR_CHECK(err_code);
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;The benefit of using the HFXO with PWM is that you&amp;#39;ll get a higher accuracy then with the HFINT. The HFINT is specified as typical +- 1.5% but can be max +- 6%. This can create a significant variation between samples, and when the radio runs on (HFXO) and the PWM (HFINT).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can read more about HFXO and HFINT&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.nrf52832.ps.v1.1/clock.html?cp=4_2_0_18#frontpage_clock"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/304947?ContentTypeID=1</link><pubDate>Thu, 15 Apr 2021 01:40:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c7aea679-0c76-4cf3-8cb9-fd2e6f969691</guid><dc:creator>colijevia</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; I tried,and the isseue is solved,now it &amp;nbsp;works well,thank you.&lt;br /&gt;&lt;br /&gt;regards，&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;colijevia&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/304791?ContentTypeID=1</link><pubDate>Wed, 14 Apr 2021 11:43:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bf4bfe45-83d2-408e-a8b8-911a3cbccd53</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;We&amp;#39;re suspecting that the issue might be due to the difference in accuracy between the internal oscillator HFINT and the crystal oscillator HFXO (used by the softdevice). The PWM will run on HFINT unless the HFXO is explicitly started.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you try running the external oscillator from the start in main by adding this&lt;strong&gt; right after &lt;/strong&gt;you have initialized the Softdevice?&lt;span&gt;:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    err_code = sd_clock_hfclk_request();
    APP_ERROR_CHECK(err_code);

    uint32_t hfclk_is_running = 0;

    while (!hfclk_is_running)
    {
        APP_ERROR_CHECK(sd_clock_hfclk_is_running(&amp;amp;hfclk_is_running) );
    }&lt;/pre&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/304746?ContentTypeID=1</link><pubDate>Wed, 14 Apr 2021 09:20:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:af3dbe46-d521-434e-bf44-6cafe87029a6</guid><dc:creator>colijevia</dc:creator><description>&lt;p&gt;HI,&lt;br /&gt;sorry to reply so late,I tried with nrf52832 DK, but the same problem still exists.is there any other way for reference?&lt;br /&gt;&lt;br /&gt;regards&lt;br /&gt;colijevia&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/301705?ContentTypeID=1</link><pubDate>Wed, 24 Mar 2021 13:58:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62bf5789-e05d-43fd-ba09-921d00f8713b</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;From the video that you shared it seems that there are some shifts in the signal when the noise happens.&lt;strong&gt; Are you able to reproduce the issue with app_pwm on a nRF52 DK or is just on the custom board that has&amp;nbsp;nrf52805?&amp;nbsp;&lt;/strong&gt;&lt;br /&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
[quote user="colijevia"]&lt;span style="font-size:inherit;"&gt;Now, I simulate PWM by PPI and timer, but no matter on nrf52323 or nrf52810, the buzzer will also be interrupted.&lt;/span&gt;&lt;br /&gt;[/quote]
&lt;p&gt;&amp;nbsp;This seems to indicate that you are able to reproduce it on another board? &lt;strong&gt;Please clarify, and specify if you&amp;#39;re able to reproduce on a development kit or no&lt;/strong&gt;t.&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/301110?ContentTypeID=1</link><pubDate>Mon, 22 Mar 2021 06:49:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cd011436-0a8b-4fea-91f5-0b7da3dab4d3</guid><dc:creator>colijevia</dc:creator><description>&lt;p&gt;Hi，&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Sorry to reply late,i use nRF52832 custom PCB ,Keil version5,SDK15.00,here are my code:&lt;br /&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/7558.APP_5F00_PWM.rar"&gt;devzone.nordicsemi.com/.../7558.APP_5F00_PWM.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/2072.PPI_5F00_PWM.rar"&gt;devzone.nordicsemi.com/.../2072.PPI_5F00_PWM.rar&lt;/a&gt;&lt;br /&gt;Added a Oscilloscope test videos,noise will be heard:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/buzzer_5F00_test.mp4"&gt;devzone.nordicsemi.com/.../buzzer_5F00_test.mp4&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;Is this sound normal?&lt;br /&gt;&lt;br /&gt;Best regards&lt;br /&gt;&lt;br /&gt;&lt;span&gt;colijevia&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/300865?ContentTypeID=1</link><pubDate>Fri, 19 Mar 2021 10:08:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:367859b5-93e6-4e1f-b420-b19c65526ecb</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user="colijevia"]&lt;span style="font-size:inherit;"&gt;Now, I simulate PWM by PPI and timer, but no matter on nrf52323 or nrf52810, the buzzer will also be interrupted.&lt;/span&gt;&lt;br /&gt;[/quote]
&lt;p&gt;So now you also see the issue on the other samples that have a different nRF52 IC?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you share the code that uses app_pwm that produces the issue?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/300329?ContentTypeID=1</link><pubDate>Wed, 17 Mar 2021 09:51:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8b34f715-f6d6-4058-8cf6-4cbef67365a0</guid><dc:creator>colijevia</dc:creator><description>&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;Hi, &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; Sorry, I didn&amp;#39;t notice that the program in 52832 added delay：&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style="font-size:inherit;"&gt; ...&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; buzzer_power_on();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; nrf_delay_ms(500);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; buzzer_power_off();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; ...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;I found that the buzzer is very stable only during the delay period 500ms. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; Now, I simulate PWM by PPI and timer, but no matter on nrf52323 or nrf52810, the buzzer will also be interrupted.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt;My configuration is as follows:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;static const nrf_drv_timer_t m_timer = NRF_DRV_TIMER_INSTANCE(1);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; static nrf_ppi_channel_t m_ppi_channel;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;void my_gpiote_init(void)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; ret_code_t err_code;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;err_code = nrf_drv_gpiote_init();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;nrf_drv_gpiote_out_config_t out_config = NRFX_GPIOTE_CONFIG_OUT_TASK_TOGGLE(true);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;err_code = nrfx_gpiote_out_init(BUZZER_PIN, &amp;amp;out_config);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;nrf_drv_gpiote_out_task_enable(BUZZER_PIN);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;static void PPI_event_init(void)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; ret_code_t err_code;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; err_code = nrf_drv_ppi_init();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;nrf_drv_timer_config_t timer_cfg = NRF_DRV_TIMER_DEFAULT_CONFIG;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; timer_cfg.bit_width = NRF_TIMER_BIT_WIDTH_32;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;err_code = nrf_drv_timer_init(&amp;amp;m_timer, &amp;amp;timer_cfg, NULL);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;uint32_t ticks = nrf_drv_timer_us_to_ticks(&amp;amp;m_timer, 125);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; nrf_drv_timer_extended_compare(&amp;amp;m_timer,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; NRF_TIMER_CC_CHANNEL0,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; ticks,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; NRF_TIMER_SHORT_COMPARE0_CLEAR_MASK,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; false);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;nrf_drv_timer_enable(&amp;amp;m_timer);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; uint32_t timer_compare_event_addr =&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;nrf_drv_timer_compare_event_address_get(&amp;amp;m_timer,NRF_TIMER_CC_CHANNEL0);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; uint32_t gpiote_task_addr = nrf_drv_gpiote_out_task_addr_get(BUZZER_PIN);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;err_code = nrf_drv_ppi_channel_alloc(&amp;amp;m_ppi_channel);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;err_code = nrf_drv_ppi_channel_assign(m_ppi_channel,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; timer_compare_event_addr,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; gpiote_task_addr); &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt; APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;ret_code_t err_code = nrf_drv_ppi_channel_enable(m_ppi_channel);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;APP_ERROR_CHECK(err_code);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;Best regards&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt;colijevia&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/300322?ContentTypeID=1</link><pubDate>Wed, 17 Mar 2021 09:15:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e15a1a7b-e051-4c0b-a9a5-214c3a717310</guid><dc:creator>Jared</dc:creator><description>[quote user="colijevia"]PPI function seems to be not working, it seems to be interrupted intermittently.[/quote]
&lt;p&gt;&lt;span&gt;PPI runs independently&amp;nbsp;of the CPU and shouldn&amp;#39;t&amp;nbsp;be interrupted. Could you elaborate more on this?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;If you probe the PWM signal on P0.16, how does it look like when you compare it with the samples that has a nRF52832?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/300091?ContentTypeID=1</link><pubDate>Tue, 16 Mar 2021 11:17:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eb31c930-c48b-46ff-b053-ab84c741a06d</guid><dc:creator>colijevia</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;I used PIN P0.16，PPI function seems to be not working, it seems to be interrupted intermittently.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/300020?ContentTypeID=1</link><pubDate>Tue, 16 Mar 2021 08:31:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5369b12b-90ee-43bf-a910-2f2e64cec367</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;No, it shouldn&amp;#39;t be problematic. app_pwm doesn&amp;#39;t use the PWM peripheral, instead it uses bit-banging and a GPIO pin to produce a PWM signal.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What pins are you using?&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/299969?ContentTypeID=1</link><pubDate>Tue, 16 Mar 2021 01:09:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f715d65a-318a-4016-8fb8-c35b3cfe09da</guid><dc:creator>colijevia</dc:creator><description>&lt;p&gt;Yes, I didn&amp;#39;t see PWM introduction in the chip manual, but I used it. Would that cause any problems?&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PWM of nRF52805</title><link>https://devzone.nordicsemi.com/thread/299852?ContentTypeID=1</link><pubDate>Mon, 15 Mar 2021 14:38:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d96dbb3-00db-49e3-a5d1-702ff77e788c</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Are you seeing this on all of your samples that have the nRF52805?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>