<?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>S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/10440/s120-send-notification-to-peripheral</link><description>Hello, 
 I am working on S120 stack and 9.0 SDK and the central will connect to 2 different peripherals with unique IDs and both unique ID is having different service. 
 Like P1 and P2 are peripherals having different IDs and P1 will be sending data</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 23 Feb 2017 12:03:40 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/10440/s120-send-notification-to-peripheral" /><item><title>RE: S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/thread/38806?ContentTypeID=1</link><pubDate>Thu, 23 Feb 2017 12:03:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:54caa21e-0ae1-43d7-87cf-0bc27d2c3b17</guid><dc:creator>Jackxl</dc:creator><description>&lt;p&gt;to sowmya: your problem BLE_DB_DISCOVERY_SRV_NOT_FOUND is wrong uuid type.
If you have base of uuid equals bluetooth base (BLE_UUID_OUR_BASE_UUID), you will have to change uuid.type = 1&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/thread/38802?ContentTypeID=1</link><pubDate>Wed, 25 Nov 2015 13:08:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a8eae241-68d3-417e-be6a-64f28d43b28c</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;Use ble_app_uart_c example from SDK 10 or from github &lt;a href="https://github.com/NordicSemiconductor/ble_app_uart_c_S120"&gt;here&lt;/a&gt; (for using s120 and SDK 9 it should be enough to change the flash and RAM memory start address and size)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/thread/38804?ContentTypeID=1</link><pubDate>Wed, 25 Nov 2015 11:38:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8f9bd43e-5b2a-4fd9-835e-b1c7bd16550a</guid><dc:creator>sowmya</dc:creator><description>&lt;p&gt;Yes I have changed. One more testing I did, the same central code is working when I connect to iPad but not working with nRF51822 peripheral board.
The nRF51822 peripheral board is working with BT dongle which will act as client.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/thread/38803?ContentTypeID=1</link><pubDate>Wed, 25 Nov 2015 11:35:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:255b5f18-3b2d-4aa5-bf84-50f6d3c62330</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;You have changed the UUID in both peripheral and central? The central will search for services with specific UUIDs when calling ble_db_discovery_evt_register(...).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/thread/38805?ContentTypeID=1</link><pubDate>Wed, 25 Nov 2015 09:30:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0c3b3b9d-38ef-439b-82da-0c4179cd317f</guid><dc:creator>sowmya</dc:creator><description>&lt;p&gt;Thank you ole. I checked the UART and HRM application and changed only the UUID and service in my application. But I am getting &lt;strong&gt;BLE_DB_DISCOVERY_SRV_NOT_FOUND&lt;/strong&gt; event in &lt;em&gt;db_discover_evt_handler&lt;/em&gt; function. But I verified the service and UUID on both master and slave and they are same. Could you please help me, how to handle service in central device?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S120 send notification to peripheral</title><link>https://devzone.nordicsemi.com/thread/38801?ContentTypeID=1</link><pubDate>Tue, 24 Nov 2015 14:19:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d1ace02-b546-4028-9776-51457220a9ff</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;The peripheral is generally setup with the GATT server and the central as the GATT client. If this is the case, the central will have to do a write to the P2 to send data, see the &lt;a href="http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf51.v1.0.0%2Fnrf51_series.html&amp;amp;cp=2"&gt;Message Sequence Chart&lt;/a&gt; and the &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s120.api.v2.1.0/group___b_l_e___g_a_t_t_c___f_u_n_c_t_i_o_n_s.html#ga90298b8dcd8bbe7bbe69d362d1133378"&gt;function API&lt;/a&gt;. You can also see how it is implemented in the ble_app_uart examples (peripheral and central).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>