<?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>Is it possible to reject a connection parameters update request?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14684/is-it-possible-to-reject-a-connection-parameters-update-request</link><description>In sample code for central devices,, the BLE event handler, on_ble_evt() , handles the `BLE_GAP_EVT_CONN_PARAM_UPDATE_REQUEST&amp;#39; by accepting the request. Is it possible to reject the request? 
 nRF5 SDK 11.0.0, with PCA10040 EVB</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 22 Jun 2016 20:38:09 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14684/is-it-possible-to-reject-a-connection-parameters-update-request" /><item><title>RE: Is it possible to reject a connection parameters update request?</title><link>https://devzone.nordicsemi.com/thread/56044?ContentTypeID=1</link><pubDate>Wed, 22 Jun 2016 20:38:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ee167170-c33e-4694-a20e-67d4c80011ab</guid><dc:creator>James Yu</dc:creator><description>&lt;p&gt;Respond with &lt;code&gt;sd_ble_gap_conn_param_update()&lt;/code&gt; and pass &lt;code&gt;NULL&lt;/code&gt; for &lt;code&gt;p_conn_params&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;     * @param[in] conn_handle Connection handle.
     * @param[in] p_conn_params  Pointer to desired connection parameters. If NULL is provided on a peripheral role,
     *                           the parameters in the PPCP characteristic of the GAP service will be used instead.
     *                           If NULL is provided on a central role and in response to a @ref BLE_GAP_EVT_CONN_PARAM_UPDATE_REQUEST, the peripheral request will be rejected

sd_ble_gap_conn_param_update(uint16_t conn_handle, const *p_conn_params);
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>