<?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>BLE multilink inherent 1 second scheduling?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/25661/ble-multilink-inherent-1-second-scheduling</link><description>Hello, 
 I have been testing the BLE multilink examples for the s120 softdevice. More specifically, I have tested the ble_app_hrs_c example in the experimental s120 folder. All is working fine, I am able to connect multiple peripherals and connect them</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 03 Oct 2017 14:49:33 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/25661/ble-multilink-inherent-1-second-scheduling" /><item><title>RE: BLE multilink inherent 1 second scheduling?</title><link>https://devzone.nordicsemi.com/thread/101098?ContentTypeID=1</link><pubDate>Tue, 03 Oct 2017 14:49:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e8577697-00dc-446f-99a5-946bf6dcb9b0</guid><dc:creator>pcalleme</dc:creator><description>&lt;p&gt;After hours of digging into this problem, finally solved the issue. The answer is not a difficult one and lies in altering the minimum and maximum connection times in ble_gap_conn_params in the connection manager code as follows:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/**
 *  Scan parameters requested for connection. 
 */
static const ble_gap_conn_params_t m_cnxn_param = 
{
    MSEC_TO_UNITS(50, UNIT_1_25_MS),                               // Minimum connection 
    MSEC_TO_UNITS(200, UNIT_1_25_MS),                              // Maximum connection     
    0,                                                              // Slave latency 
    MSEC_TO_UNITS(CONN_MNGR_SUPERVISION_TIMEOUT, UNIT_10_MS)        // Supervision time-out
};
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I was confusing these values with the scan parameters. Problem solved.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>