<?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>Configuration of Watchdog timer</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/48864/configuration-of-watchdog-timer</link><description>Hello, 
 
 I am using nRF52832 DK PCA10040 v1.2.4, SDK_15.3.0, S132 SoftDevice and Segger for flashing the image. I am using ‘ble_app_blinky’. 
 
 I have gone through wdt example. It says, the example is configured with 2 sec. Is this WDT_CONFIG_RELOAD_VALUE</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 24 Jun 2019 08:47:39 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/48864/configuration-of-watchdog-timer" /><item><title>RE: Configuration of Watchdog timer</title><link>https://devzone.nordicsemi.com/thread/194260?ContentTypeID=1</link><pubDate>Mon, 24 Jun 2019 08:47:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3164d06c-3f2c-4457-a371-fb6afbd8f861</guid><dc:creator>beemavishnu</dc:creator><description>&lt;p&gt;Thank you for confirmation.&lt;/p&gt;
&lt;p&gt;How about considering &amp;#39;-1&amp;#39; also. Is it fine to ignore as it is negligible.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Configuration of Watchdog timer</title><link>https://devzone.nordicsemi.com/thread/194254?ContentTypeID=1</link><pubDate>Mon, 24 Jun 2019 08:32:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3582ab48-de9a-41aa-9d56-f4607e6ba02e</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The WDT example uses the WDT driver, and that is configured by the nrf_drv_wdt_config_t struct, which is typedefed to nrfx_wdt_config_t. It has a &lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.3.0/structnrfx__wdt__config__t.html?cp=5_1_6_9_0_42_1_1_2#aa113f28a4d81b2478948af1190f6ff95"&gt;reload_value&lt;/a&gt;&amp;nbsp;field, which is in milliseconds (ms). The example uses&amp;nbsp;NRF_DRV_WDT_DEAFULT_CONFIG, which means that the value of&amp;nbsp;WDT_CONFIG_RELOAD_VALUE in sdk_config is used, and this is set to 2000 (2s) by default.&lt;/p&gt;
&lt;p&gt;Unfortunately, the documentation string in sdk_config.h is wrong, which can cause some confusion, but you can clearly see that the value is in ms by looking at the implementation in nrfx:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;nrf_wdt_reload_value_set((p_config-&amp;gt;reload_value * 32768) / 1000);&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>