<?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>Custom service not found, multilink central</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/34128/custom-service-not-found-multilink-central</link><description>Hey! 
 I have some trouble service UUID then i try to use the multilink central example project on a nRF51 dongle. I want it to have contact with a peripheral with sends a custom service. In the peripheral i have defined this: CUSTOM_SERVICE_UUID 0x1400</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 10 May 2018 07:19:05 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/34128/custom-service-not-found-multilink-central" /><item><title>RE: Custom service not found, multilink central</title><link>https://devzone.nordicsemi.com/thread/131609?ContentTypeID=1</link><pubDate>Thu, 10 May 2018 07:19:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:06e5aaeb-ece8-42aa-bb11-6f69755ed63f</guid><dc:creator>Terk</dc:creator><description>&lt;p&gt;Yes, of course! My UUID was wrong..&amp;nbsp;&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: Custom service not found, multilink central</title><link>https://devzone.nordicsemi.com/thread/131546?ContentTypeID=1</link><pubDate>Wed, 09 May 2018 13:51:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:822e4f0a-e4e9-4a3c-b92a-5fcb6a3bf1a0</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;If you need multilink central support, then the&amp;nbsp;multilink central example is a good starting point.&lt;/p&gt;
&lt;p&gt;Regarding the error &amp;quot;Service UUID 0x1400 Not found&amp;quot;, please make sure that you also use the same UUID BASE on both central and&amp;nbsp;peripheral. I.e. the&amp;nbsp;&lt;strong&gt;CUSTOM_SERVICE_UUID_BASE&lt;/strong&gt;&amp;nbsp;that is used on the&amp;nbsp;peripheral, is also the same as the UUID base used on the central side(originally named&amp;nbsp;&lt;strong&gt;LBS_UUID_BASE&lt;/strong&gt;&amp;nbsp;on the&amp;nbsp;multilink central example).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom service not found, multilink central</title><link>https://devzone.nordicsemi.com/thread/131468?ContentTypeID=1</link><pubDate>Wed, 09 May 2018 10:03:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:60089390-a7af-477b-890c-5faf728a3aa7</guid><dc:creator>Terk</dc:creator><description>&lt;p&gt;Hey Sigurd,&lt;/p&gt;
&lt;p&gt;The service that the peripheral device have is 0x1400 and the characteristic is 0x1401.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I followed this tutorial to make a custom service,&amp;nbsp;&lt;a href="https://github.com/bjornspockeli/custom_ble_service_example"&gt;https://github.com/bjornspockeli/custom_ble_service_example&lt;/a&gt;. So the peripheral device is made from the ble_app_template and modified as in the tutorial.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Yes, that was the&amp;nbsp;thought. Or is I maybe better to use something else when i want a custom service?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I tried that fist before I remembered that the service and character on the peripheral side was different. I have not tried it with the ble_app_uart on the peripheral side.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Custom service not found, multilink central</title><link>https://devzone.nordicsemi.com/thread/131454?ContentTypeID=1</link><pubDate>Wed, 09 May 2018 08:49:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b386b9bf-aab2-4820-91c3-a4ddcbac233e</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What services and characteristics does the peripheral device have?&lt;/li&gt;
&lt;li&gt;Is it &lt;strong&gt;ble_app_uart&lt;/strong&gt; peripheral you are trying to connect to? If yes, did you make any changes to that peripheral&amp;nbsp;example, e.g. the UUID values?&lt;/li&gt;
&lt;li&gt;Your goal is to implement&amp;nbsp;multilink central for NUS?&amp;nbsp;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Does it work if you try the default UUID’s for NUS ?&lt;/p&gt;
&lt;pre class="ui-code" data-mode="text"&gt;#define NUS_BASE_UUID                   {{0x9E, 0xCA, 0xDC, 0x24, 0x0E, 0xE5, 0xA9, 0xE0, 0x93, 0xF3, 0xA3, 0xB5, 0x00, 0x00, 0x40, 0x6E}} /**&amp;lt; Used vendor specific UUID. */

#define BLE_UUID_NUS_SERVICE            0x0001                      /**&amp;lt; The UUID of the Nordic UART Service. */
#define BLE_UUID_NUS_RX_CHARACTERISTIC  0x0002                      /**&amp;lt; The UUID of the RX Characteristic. */
#define BLE_UUID_NUS_TX_CHARACTERISTIC  0x0003                      /**&amp;lt; The UUID of the TX Characteristic. */&lt;/pre&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>