<?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>number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/18099/number-of-connected-peripherals-of-multilink-central</link><description>Hi. I&amp;#39;m using nRF51822 and SDK10.0.0, S130 for Central BLE. 
 I want multilink as Central.
As I know nRF51822 supports Max. 8 peripherals at the same time. 
 I can connect only 3 peripherals now.
Is there any source code for tha Max number of peripherals</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 05 Dec 2016 23:20:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/18099/number-of-connected-peripherals-of-multilink-central" /><item><title>RE: number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/thread/69831?ContentTypeID=1</link><pubDate>Mon, 05 Dec 2016 23:20:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e73af937-a770-4f12-9377-cf2adbcc712e</guid><dc:creator>roger.k</dc:creator><description>&lt;p&gt;Thank you very much for your help. It&amp;#39;s so great information.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/thread/69830?ContentTypeID=1</link><pubDate>Mon, 05 Dec 2016 13:22:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8f981ec1-39c2-4387-ade8-2950dbb374b8</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Hi again, from the &lt;a href="http://www.nordicsemi.com/eng/nordic/Products/nRF51822/S130-SD/46579#additional-terms-content-link-resource-download-link46579-17-40686927"&gt;release notes of S130 v1.0.0&lt;/a&gt;, it is specified that it support &lt;em&gt;&amp;quot;Up to 4 simultaneous active connections: up to 3 in the Central role, along with up to 1 in the Peripheral role&lt;/em&gt;&amp;quot;. This means that you have to migrate to S130 v2.0.x to get up to 8 connections. A migration document is provided along with the &lt;a href="http://www.nordicsemi.com/eng/nordic/download_resource/53724/11/3973077"&gt;softdevice download&lt;/a&gt;. I&amp;#39;m not sure why this is not specified in the documentation of the SDK 10 multilink example, and I&amp;#39;m sorry that I could not provide you this answer earlier.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/thread/69829?ContentTypeID=1</link><pubDate>Sat, 03 Dec 2016 03:55:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7f7a7400-57a5-4167-8e58-e40d39a674f4</guid><dc:creator>roger.k</dc:creator><description>&lt;p&gt;Thank you for your reply. Sure, I&amp;#39;ve considered SDK12. But I started with SDK10 and I&amp;#39;m just about to finish this development. I&amp;#39;ll change SDK for next development, not now.
So I want to know how to solve it with SDK10 ASAP.
How do I change my project for the memory setting?
Can you tell me How? and What?
I need your help more.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/thread/69828?ContentTypeID=1</link><pubDate>Fri, 02 Dec 2016 13:12:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6bc7c23f-dd5b-4fa6-84ff-41b015cd8f70</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Do you get any error codes? I see that I get &lt;code&gt;NRF_ERROR_NO_MEM&lt;/code&gt; if connect more than 3 peripherals with the SDK 10 Multilink central application. To resolve this, you have to change the memory settings for your project. Have you considered migrating to SDK 11/12? Thw multilink central example in these SDK&amp;#39;s are improved over the version in SDK 10.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/thread/69827?ContentTypeID=1</link><pubDate>Fri, 02 Dec 2016 01:18:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:521306d5-ff90-485a-b09b-ef0597b0b8ca</guid><dc:creator>roger.k</dc:creator><description>&lt;p&gt;Thank you very much for your reply. After 3 connection, Scan started again. And I can see Advertising data what I want to connect to. After then I can see Start connection as below.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;const ble_gap_evt_adv_report_t *p_adv_report = &amp;amp;p_gap_evt-&amp;gt;params.adv_report;
err_code = sd_ble_gap_connect(&amp;amp;p_adv_report-&amp;gt;peer_addr,
						  &amp;amp;m_scan_params,
						  &amp;amp;m_connection_param);
if (err_code == NRF_SUCCESS)
{
	err_code = bsp_indication_set(BSP_INDICATE_IDLE);
	APP_ERROR_CHECK(err_code);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;After that, there is no event for connection.
Is there any other definition for number of Peripherals?&lt;/p&gt;
&lt;p&gt;I need your help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: number of connected peripherals of multilink central</title><link>https://devzone.nordicsemi.com/thread/69826?ContentTypeID=1</link><pubDate>Thu, 01 Dec 2016 09:50:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:76475439-1802-4cf4-a7d2-2f5f0d8bce06</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The multilink central example in SDK 10 should support 8 connections out of the box. What happens when you try to connect more peripherals? Have you changed the &lt;code&gt;MAX_PEER_COUNT&lt;/code&gt; define in the example?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;EDIT: Softdevice S130 v1.0.0 only support up to 3 connections in central mode.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Jørgen&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>