<?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 Connect not working on Poco F1</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/38858/nrf-connect-not-working-on-poco-f1</link><description>Hi everyone, 
 I&amp;#39;ve a nRF52810 based device that I am working with the Android based nRF Connect app on a Poco F1 (Oreo 8.1.0). The app scans the device properly but connection isn&amp;#39;t being established, as you can see below. Note that at 12.14.34s when</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 11 Oct 2018 13:36:06 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/38858/nrf-connect-not-working-on-poco-f1" /><item><title>RE: nRF Connect not working on Poco F1</title><link>https://devzone.nordicsemi.com/thread/152526?ContentTypeID=1</link><pubDate>Thu, 11 Oct 2018 13:36:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:92d30d6d-17ea-4ea1-adef-1535fe8cbf96</guid><dc:creator>EarthLord</dc:creator><description>&lt;p&gt;Thanks Kenneth. We were not handling the PHY update request. Once this is handled things got sorted.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect not working on Poco F1</title><link>https://devzone.nordicsemi.com/thread/150287?ContentTypeID=1</link><pubDate>Tue, 25 Sep 2018 13:32:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bfbbaad1-5be1-4cba-a7e7-37a4fb43da68</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;I suggest you print out&amp;nbsp;evt-&amp;gt;header.evt_id and check if there is an event occurring that is not handled (for instance compare working and non-working).&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect not working on Poco F1</title><link>https://devzone.nordicsemi.com/thread/150274?ContentTypeID=1</link><pubDate>Tue, 25 Sep 2018 13:14:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:24c25b33-9c15-4dfb-b126-577fdde00f9b</guid><dc:creator>EarthLord</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void ble_evt_handler(ble_evt_t * evt)
{
    uint32_t err_code;
    switch(evt-&amp;gt;header.evt_id)
    {
    case BLE_GAP_EVT_CONNECTED:
        h_conn = evt-&amp;gt;evt.gap_evt.conn_handle;
        break;
    case BLE_GAP_EVT_DISCONNECTED:
        h_conn = BLE_CONN_HANDLE_INVALID;
        break;
    case BLE_GATTS_EVT_WRITE:
    {
        sensepi_config_t * config =
                (sensepi_config_t *) evt-&amp;gt;evt.gatts_evt.params.write.data;
        sensepi_config_t_update(config);
        break;
    }
    case BLE_GATTS_EVT_EXCHANGE_MTU_REQUEST:
    {
        uint16_t mtu_val = BLE_GATT_ATT_MTU_DEFAULT;
        err_code = sd_ble_gatts_exchange_mtu_reply(h_conn, mtu_val);
        APP_ERROR_CHECK(err_code);
        break;
    }
    }

    sensepi_ble_sd_evt(evt);
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Thanks for the quick reply. We&amp;#39;re using nRF52810 running S112 6.0.0. We&amp;#39;re not using the SDK. The about function is all the SD related activities done with events.&lt;/p&gt;
&lt;p&gt;We have not had any issue with any other phone, only this. So that&amp;#39;s why the question is targeting the phone and the app .&lt;/p&gt;
&lt;p&gt;Cheers, Prithvi&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect not working on Poco F1</title><link>https://devzone.nordicsemi.com/thread/150265?ContentTypeID=1</link><pubDate>Tue, 25 Sep 2018 12:54:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:92502d36-c144-402d-a2dc-f2b9d7a8100c</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;We need an on-air sniffer log, please download and install nrf-sniffer-v2 (follow user guide).&lt;br /&gt;&lt;a href="https://www.nordicsemi.com/eng/Products/Bluetooth-low-energy/nRF-Sniffer/(language)/eng-GB#Downloads"&gt;https://www.nordicsemi.com/eng/Products/Bluetooth-low-energy/nRF-Sniffer/(language)/eng-GB#Downloads&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As a wild guess can you comment out&amp;nbsp;sd_ble_gattc_exchange_mtu_request() in&amp;nbsp;on_connected_evt() in nrf_ble_gatt.c?&lt;/p&gt;
&lt;p&gt;What SDK and softdevice are you running here?&amp;nbsp;Is&amp;nbsp;S112 defined? E.g. see&amp;nbsp;nrf_ble_gatt_on_ble_evt() in nrf_ble_gatt.c if BLE_GAP_EVT_DATA_LENGTH_UPDATE and BLE_GAP_EVT_DATA_LENGTH_UPDATE_REQUEST is compiled.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>