<?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>nRF SDK version 13.1 central ble_uart_c not working</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/77889/nrf-sdk-version-13-1-central-ble_uart_c-not-working</link><description>I want to connect remocon and nrfboard. A nd see the value of the remote control as uart. 
 so I try to connect remocon and nrf85832 to use SDK 13.1 example. 
 I use central ble_uart_c code. 
 I change NUS_BASE_UUID, BLE_UUID_NUS_SERVICE, BLE_UUID_NUS_RX_CHARACTERSTIC</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 17 Aug 2021 09:34:18 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/77889/nrf-sdk-version-13-1-central-ble_uart_c-not-working" /><item><title>RE: nRF SDK version 13.1 central ble_uart_c not working</title><link>https://devzone.nordicsemi.com/thread/325253?ContentTypeID=1</link><pubDate>Tue, 17 Aug 2021 09:34:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9f045e76-1c2c-4249-aa0a-406324434237</guid><dc:creator>menboong</dc:creator><description>&lt;p&gt;I solved the problem by changing the version from 13 to 17. Thanks for help!!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF SDK version 13.1 central ble_uart_c not working</title><link>https://devzone.nordicsemi.com/thread/321930?ContentTypeID=1</link><pubDate>Tue, 27 Jul 2021 05:36:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1541cc28-06fd-40d7-a6e3-3900078b7dca</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;The ble app uart central will only connect with a peer that have the specific UUID in the advertisment packet, ref (snippet from code):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;static void ble_evt_handler(ble_evt_t const * p_ble_evt, void * p_context)
{
    ret_code_t            err_code;
    ble_gap_evt_t const * p_gap_evt = &amp;amp;p_ble_evt-&amp;gt;evt.gap_evt;

    switch (p_ble_evt-&amp;gt;header.evt_id)
    {
        case BLE_GAP_EVT_ADV_REPORT:
        {
            ble_gap_evt_adv_report_t const * p_adv_report = &amp;amp;p_gap_evt-&amp;gt;params.adv_report;

            if (is_uuid_present(&amp;amp;m_nus_uuid, p_adv_report))
            {

                err_code = sd_ble_gap_connect(&amp;amp;p_adv_report-&amp;gt;peer_addr,
                                              &amp;amp;m_scan_params,
                                              &amp;amp;m_connection_param,
                                              APP_BLE_CONN_CFG_TAG);
...
...
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Likely you need to look at the advertisment packet of the remote control to check if it contain this data or if you need to change the&amp;nbsp;&amp;#39;if (is_uuid_present(&amp;amp;m_nus_uuid, p_adv_report))&amp;#39; check.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF SDK version 13.1 central ble_uart_c not working</title><link>https://devzone.nordicsemi.com/thread/321912?ContentTypeID=1</link><pubDate>Tue, 27 Jul 2021 01:05:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5c801ba-72f9-43df-9598-3c77513c7588</guid><dc:creator>menboong</dc:creator><description>&lt;p&gt;I already connect nRF Connect and remote control. This photo show remote control uuid.&lt;br /&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1627347901433v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;when I upload v13.1 ble_uart_c to nrf and try to connect with remote control. but it doesn&amp;#39;t connect between remote and nrfboard.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF SDK version 13.1 central ble_uart_c not working</title><link>https://devzone.nordicsemi.com/thread/321801?ContentTypeID=1</link><pubDate>Mon, 26 Jul 2021 11:58:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:184f6cc2-5199-4ed8-a9a5-c63e8f3a1fc9</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Have you tried to use the nRF Connect for Mobile app and see if you are able to connect and discover the services and characteristics on the remote control? Then you can also read out the exact UUID&amp;#39;s you need for the central example to use.&lt;/p&gt;
&lt;p&gt;Does the &lt;span&gt;ble_uart_c&amp;nbsp;&lt;/span&gt;example even connect?&lt;/p&gt;
&lt;p&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>