<?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>nrf51-ble-app-lbs communication with S120 Multilink</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/3201/nrf51-ble-app-lbs-communication-with-s120-multilink</link><description>Hello, 
 I ran PCA10005 board with nrf51-ble-app-lbs application and programmed PCA10004 with S120 ble_app_multilink_central. I have connection between them (I just changed TARGET_DEV_NAME in central to &amp;#39;LedButtonDemo&amp;#39;). However, I have no idea how to</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 17 Aug 2015 17:31:20 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/3201/nrf51-ble-app-lbs-communication-with-s120-multilink" /><item><title>RE: nrf51-ble-app-lbs communication with S120 Multilink</title><link>https://devzone.nordicsemi.com/thread/11784?ContentTypeID=1</link><pubDate>Mon, 17 Aug 2015 17:31:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:824e4f9b-a119-4a0f-b368-bf10901c452d</guid><dc:creator>PedroSilva3</dc:creator><description>&lt;p&gt;Hi ! I have the same problem. Can you tell me what you add more? Because the gattc_params is not yet declare on Multilink example .&lt;/p&gt;
&lt;p&gt;Thanks in advance.
Pedro&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf51-ble-app-lbs communication with S120 Multilink</title><link>https://devzone.nordicsemi.com/thread/11783?ContentTypeID=1</link><pubDate>Tue, 22 Jul 2014 15:09:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:12f5241a-7ba6-4642-98de-ee2cc6e2142e</guid><dc:creator>adriand</dc:creator><description>&lt;p&gt;Ok, I&amp;#39;ve done it. If somebody needs I&amp;#39;ll share my piece of code:&lt;/p&gt;
&lt;p&gt;static void on_ble_evt(ble_evt_t * p_ble_evt){&lt;/p&gt;
&lt;p&gt;case BLE_GAP_EVT_CONNECTED:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;m_conn_handle = p_ble_evt-&amp;gt;evt.gap_evt.conn_handle;
				
gattc_params.flags = BLE_GATT_EXEC_WRITE_FLAG_PREPARED_WRITE;
gattc_params.handle = 0x0011; // LED service handle
gattc_params.len = len;
gattc_params.offset = 0;
gattc_params.write_op = BLE_GATT_OP_WRITE_CMD;					
data[0] = (actual_rssi_stat == RSSI_NEAR ? 1 : 0);
gattc_params.p_value = data;
			
sd_ble_gattc_write(m_conn_handle, &amp;amp;gattc_params);
    
    break; 
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know if it&amp;#39;s 100% correct but works for me&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>