<?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>Avoid connection of nearby devices with same firmware with each other (NRF52833).</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/89180/avoid-connection-of-nearby-devices-with-same-firmware-with-each-other-nrf52833</link><description>Hi Everyone, 
 I am working on NRF52833. I have developed code for our project. Now in this project the phone app will connect with the device using BLE for which I have implemented Pairing mechanism. When I load the firmware into the device and try to</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 30 Jun 2022 13:31:33 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/89180/avoid-connection-of-nearby-devices-with-same-firmware-with-each-other-nrf52833" /><item><title>RE: Avoid connection of nearby devices with same firmware with each other (NRF52833).</title><link>https://devzone.nordicsemi.com/thread/374924?ContentTypeID=1</link><pubDate>Thu, 30 Jun 2022 13:31:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:90d50edf-4c9e-4ad6-a228-9098782ec322</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;You need to adjust the memory settings when increasing the link count. The log output from&amp;nbsp;&lt;span&gt;nrf_sdh_ble_enable() should tell you exactly what you should adjust it too. See &lt;a href="https://devzone.nordicsemi.com/guides/short-range-guides/b/getting-started/posts/adjustment-of-ram-and-flash-memory"&gt;this &lt;/a&gt;blog post.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Jarred&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Avoid connection of nearby devices with same firmware with each other (NRF52833).</title><link>https://devzone.nordicsemi.com/thread/374820?ContentTypeID=1</link><pubDate>Thu, 30 Jun 2022 04:53:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:be9dacbd-c903-4d5d-b11c-ad66cff41fa0</guid><dc:creator>sne_333</dc:creator><description>&lt;p&gt;Hi Jared,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I added the above configuration but the code is getting error message. It is showing error message at the following lines:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;err_code = nrf_sdh_ble_enable(&amp;amp;ram_start);&lt;br /&gt; APP_ERROR_CHECK(err_code);&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;how to solve this?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks &amp;amp; Regards,&lt;/p&gt;
&lt;p&gt;Snehal&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Avoid connection of nearby devices with same firmware with each other (NRF52833).</title><link>https://devzone.nordicsemi.com/thread/374563?ContentTypeID=1</link><pubDate>Tue, 28 Jun 2022 13:42:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc55fb29-299d-4c42-b589-a41902ad342e</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user="snehal_2789"] How can we connect multiple phone to one peripheral device? What changes are needed to be done?[/quote]
&lt;p&gt;See the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/ble_sdk_app_multiperipheral.html"&gt;multi-peripheral&lt;/a&gt;&amp;nbsp;example in the SDK. The most essential thing is that you adjust these configs in the sdk_config.h file:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;// &amp;lt;o&amp;gt; NRF_SDH_BLE_PERIPHERAL_LINK_COUNT - Maximum number of peripheral links. 
#ifndef NRF_SDH_BLE_PERIPHERAL_LINK_COUNT
#define NRF_SDH_BLE_PERIPHERAL_LINK_COUNT 4
#endif

// &amp;lt;o&amp;gt; NRF_SDH_BLE_CENTRAL_LINK_COUNT - Maximum number of central links. 
#ifndef NRF_SDH_BLE_CENTRAL_LINK_COUNT
#define NRF_SDH_BLE_CENTRAL_LINK_COUNT 0
#endif

// &amp;lt;o&amp;gt; NRF_SDH_BLE_TOTAL_LINK_COUNT - Total link count. 
// &amp;lt;i&amp;gt; Maximum number of total concurrent connections using the default configuration.

#ifndef NRF_SDH_BLE_TOTAL_LINK_COUNT
#define NRF_SDH_BLE_TOTAL_LINK_COUNT 4
#endif&lt;/pre&gt;&lt;/p&gt;
&lt;div&gt;&lt;span&gt;&lt;span&gt;NRF_SDH_BLE_TOTAL_LINK_COUNT =&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;NRF_SDH_BLE_PERIPHERAL_LINK_COUNT +&amp;nbsp;&lt;/span&gt;&lt;/span&gt;NRF_SDH_BLE_CENTRAL_LINK_COUNT&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Also there is &lt;a href="https://devzone.nordicsemi.com/search?q=multi%20peripheral"&gt;many threads&lt;/a&gt; on this topic in this forum, so I would suggest that you read through a couple of them.&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Avoid connection of nearby devices with same firmware with each other (NRF52833).</title><link>https://devzone.nordicsemi.com/thread/374552?ContentTypeID=1</link><pubDate>Tue, 28 Jun 2022 13:14:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a1fa5bfa-e247-45f4-b28f-9fbd68a74b12</guid><dc:creator>sne_333</dc:creator><description>&lt;p&gt;Hi Jared,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Thanks for your reply. I actually was testing wrong. The other central device was getting connected and not the 2 peripheral devices were connected to each other. In my current firmware I am able to connect only one mobile to my device. How can we connect multiple phone to one peripheral device? What changes are needed to be done?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks &amp;amp; Regards,&lt;/p&gt;
&lt;p&gt;Snehal.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Avoid connection of nearby devices with same firmware with each other (NRF52833).</title><link>https://devzone.nordicsemi.com/thread/373715?ContentTypeID=1</link><pubDate>Wed, 22 Jun 2022 13:31:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d48fd0e9-d171-440e-8478-f72e2e982d3a</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;My understanding is that the device is only advertising, not scanning? So are they connecting to each other if both are acting as a GAP peripheral? Are you sure that it&amp;#39;s the two nRF52833 that is connected? Could there be some other nearby advice which has already paired with the nRF52833?&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>