<?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 central peripheral rssi communication</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/30340/ble-central-peripheral-rssi-communication</link><description>Hello All, 
 I came up with one application .. where we are planing for industrial application , my requirement is as below, 
 
 there will be two nrf52810 chips one will be on asset and another will be in vehicle. so once the vehicle comes near the asset</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 17 Apr 2018 07:05:23 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/30340/ble-central-peripheral-rssi-communication" /><item><title>RE: BLE central peripheral rssi communication</title><link>https://devzone.nordicsemi.com/thread/128566?ContentTypeID=1</link><pubDate>Tue, 17 Apr 2018 07:05:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d5725cf-761a-40cf-86f9-abe00db11e95</guid><dc:creator>awneil</dc:creator><description>&lt;p&gt;This sounds similar to my application envisaged here:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/33457/ble-to-ble-peripheral-comms-without-central"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/33457/ble-to-ble-peripheral-comms-without-central&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="66756" url="~/f/nordic-q-a/30340/ble-central-peripheral-rssi-communication"]there will be two nrf52810 chips[/quote]
&lt;p&gt;The trouble with the nRF528&lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;10&lt;/strong&gt;&lt;/span&gt; is that there is only one compatible Softdevice - S112:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.softdevices52%2Fdita%2Fsoftdevices%2Fs130%2Fs130.html"&gt;http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.softdevices52%2Fdita%2Fsoftdevices%2Fs130%2Fs130.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;S112 is &lt;strong&gt;peripheral &lt;em&gt;only&lt;/em&gt;&lt;/strong&gt; - so the solutions suggested by&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/pk"&gt;pavan&lt;/a&gt;&amp;nbsp;are not going to work.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: BLE central peripheral rssi communication</title><link>https://devzone.nordicsemi.com/thread/121359?ContentTypeID=1</link><pubDate>Tue, 20 Feb 2018 09:28:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f8eb43b-9b71-433d-b2ba-275ba691d2cb</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Hi again.&lt;/p&gt;
&lt;p&gt;You can start reporting the RSSI on, i.e the event BLE_GAP_EVT_CONNECTED.&lt;br /&gt;You start reporting the RSSI with &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s132.api.v0.9.0/group___b_l_e___g_a_p___f_u_n_c_t_i_o_n_s.html#gac369253b7f5ce0fc0093a6133faa791f" rel="noopener noreferrer" target="_blank"&gt;sd_ble_gap_rssi_start()&lt;/a&gt;.&lt;br /&gt;This will return a new event whenever the RSSI value changes, until sd_ble_gap_rssi_stop() is called.&lt;/p&gt;
&lt;p&gt;After you have started reporting, you can use the function &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s132.api.v0.9.0/group___b_l_e___g_a_p___f_u_n_c_t_i_o_n_s.html?cp=2_3_1_1_4_2_0_1_4_19#ga51f25b5b74290f91aa92cb47dc8d4276" rel="noopener noreferrer" target="_blank"&gt;sd_ble_gap_rssi_get()&lt;/a&gt;, to get the received signal strenght for the last connection event.&lt;/p&gt;
&lt;p&gt;If you want to test this with two nrF52832, you can make a simple example to test this, for example using the uart &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v14.2.0/ble_sdk_app_nus_c.html?cp=4_0_0_4_2_0_5" rel="noopener noreferrer" target="_blank"&gt;central&lt;/a&gt; and &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v14.2.0/ble_sdk_app_nus_eval.html?cp=4_0_0_4_2_2_22"&gt;peripheral&lt;/a&gt; examples. &lt;br /&gt;Add the RSSI code to the peripheral and send it over uart to the central.&lt;/p&gt;
&lt;p&gt;Let me know if you have any questions regarding this.&lt;/p&gt;
&lt;p&gt;Best regards, &lt;br /&gt;Joakim.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: BLE central peripheral rssi communication</title><link>https://devzone.nordicsemi.com/thread/121046?ContentTypeID=1</link><pubDate>Fri, 16 Feb 2018 08:36:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:efc89d0f-300b-4f66-8b39-3df6a53d382d</guid><dc:creator>pavan</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Can please confirm on my above query&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: BLE central peripheral rssi communication</title><link>https://devzone.nordicsemi.com/thread/120775?ContentTypeID=1</link><pubDate>Wed, 14 Feb 2018 04:24:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:39f03b12-0cd9-4b27-91a2-0b4338eadc32</guid><dc:creator>pavan</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for your information.&lt;/p&gt;
&lt;p&gt;But how can i read the RSSI value , weather any kind of data transmission possible in this profile? also I want to communicate between 2 controllers(nrf52832) . not between smartphone and device.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: BLE central peripheral rssi communication</title><link>https://devzone.nordicsemi.com/thread/120552?ContentTypeID=1</link><pubDate>Mon, 12 Feb 2018 11:31:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:48e502e2-f37b-408b-a0fc-c0151b312aa3</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Hi pavan!&lt;/p&gt;
&lt;p&gt;This should be achievable. &lt;br /&gt;I would suggest that you take a look at the Proximity Profile. &lt;br /&gt;&lt;em&gt;&amp;quot;The Proximity profile defines the behavior when a device moves away from a peer device so that the connection is dropped or the path loss increases above a preset level, causing an immediate alert. &lt;/em&gt;&lt;br /&gt;&lt;em&gt;The Proximity profile can also be used to define the behavior when the two devices come closer together such that a connection is made or the path loss decreases below a preset level.&amp;quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The Proximity Application (&lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v14.2.0/ble_sdk_app_proximity.html?cp=4_0_0_4_2_2_19" rel="noopener noreferrer" target="_blank"&gt;ble_app_proximity&lt;/a&gt;) is an example in our SDK that implements the Proximity profile.&lt;br /&gt;The applicatoin alerts the user when connected devices are too far apart, but you should be able to use this as a template for your application.&lt;/p&gt;
&lt;p&gt;Be sure to let me know if you have any more questions.&lt;/p&gt;
&lt;p&gt;Cheers, &lt;br /&gt;Joakim.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>