<?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>Power Save Mode</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/84523/power-save-mode</link><description>Hi, I am working on nRF52811 as central and I want to put the device in full power save mode so it does not consume power and activate once I pressed the button. How can I do that? Thanks!</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 11 Feb 2022 09:47:21 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/84523/power-save-mode" /><item><title>RE: Power Save Mode</title><link>https://devzone.nordicsemi.com/thread/352518?ContentTypeID=1</link><pubDate>Fri, 11 Feb 2022 09:47:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3ed4b911-f144-4cae-b303-298c8cd2bc13</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Thanks for the reply.&lt;br /&gt;&lt;br /&gt;Actually, I want to add this to the central mode device. Which handler I can use in that case? Can I use P0.26 pin to wake up?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Power Save Mode</title><link>https://devzone.nordicsemi.com/thread/351791?ContentTypeID=1</link><pubDate>Tue, 08 Feb 2022 12:31:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aa4e9bf8-1fc3-4626-91ef-69d576208896</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;I suggest to check out for instance the ble_app_hids_keyboard example, where you can find the following implementation:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/**@brief Function for putting the chip into sleep mode.
 *
 * @note This function will not return.
 */
static void sleep_mode_enter(void)
{
    ret_code_t err_code;

    err_code = bsp_indication_set(BSP_INDICATE_IDLE);
    APP_ERROR_CHECK(err_code);

    // Prepare wakeup buttons.
    err_code = bsp_btn_ble_sleep_mode_prepare();
    APP_ERROR_CHECK(err_code);

    // Go to system-off mode (this function will not return; wakeup will cause a reset).
    err_code = sd_power_system_off();
    APP_ERROR_CHECK(err_code);
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>