<?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 app upgrade</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/106485/nrf-connect-app-upgrade</link><description>With the new software app upgrade, I don&amp;#39;t see an option to view the details of the service/connection. Is that a bug?! Previously it would be at the top</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 12 Dec 2023 07:50:47 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/106485/nrf-connect-app-upgrade" /><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459851?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:50:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6eb0df99-e209-421f-afb0-9c44c842742d</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Please go to iOS settings -&amp;gt; Bluetooth, and toggle Bluetooth off and then back on. After that,&amp;nbsp;try to connect with the nrf connect app and enable notifications again.&amp;nbsp;Toggling Bluetooth enable&amp;nbsp;will clear the attribute cache and this might be necessary if you have been using the same board with different firmware.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459848?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:44:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b6f7dae9-59ca-41db-95b2-07b5202ce740</guid><dc:creator>morpho</dc:creator><description>&lt;p&gt;OK weird.&amp;nbsp;&lt;span&gt;sd_ble_gatts_hvx now returns 8.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;uint32_t NotifierService::UpdateValue(uint16_t value)
{
    if (!mStatusInfo-&amp;gt;notificationEnabled)
    {
        return 0;
    }

    uint32_t err_code = NRF_SUCCESS;
    ble_gatts_value_t gatts_value;

    // Initialize value struct
    memset(&amp;amp;gatts_value, 0, sizeof(gatts_value));

    gatts_value.len     = sizeof(uint16_t);
    gatts_value.offset  = 0;
    gatts_value.p_value = reinterpret_cast&amp;lt;uint8_t*&amp;gt;(&amp;amp;value);

    // Update database
    err_code = sd_ble_gatts_value_set(mStatusInfo-&amp;gt;connectionHandle,
						    mStatusInfo-&amp;gt;customValueHandle.value_handle, 
						    &amp;amp;gatts_value);
    if (err_code != NRF_SUCCESS)
    {
        return err_code;
    }
    
    // Send value if connected and notifying
    if ((mStatusInfo-&amp;gt;connectionHandle != BLE_CONN_HANDLE_INVALID)) 
    {
        ble_gatts_hvx_params_t hvx_params;

        memset(&amp;amp;hvx_params, 0, sizeof(hvx_params));

        hvx_params.handle = mStatusInfo-&amp;gt;customValueHandle.value_handle;
        hvx_params.type   = BLE_GATT_HVX_NOTIFICATION;
        hvx_params.offset = gatts_value.offset;
        hvx_params.p_len  = &amp;amp;gatts_value.len;
        hvx_params.p_data = gatts_value.p_value;

        err_code = sd_ble_gatts_hvx(mStatusInfo-&amp;gt;connectionHandle, &amp;amp;hvx_params);
    }
    else
    {
        err_code = NRF_ERROR_INVALID_STATE;
    }

    return err_code;
}&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459846?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:29:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2eee4b5-0099-419a-8e54-12433d6df029</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Here:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1702366179635v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459845?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:26:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d2f39192-76ba-431f-a000-cc0abb32e42d</guid><dc:creator>morpho</dc:creator><description>&lt;p&gt;How to view the log?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459844?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:26:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ba365eee-8ba5-4111-b30a-43da42da1008</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Thanks for confirming. Could you please post the log from the nRF Connect app after you have enabled the notification?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459843?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:24:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6cc91234-fecf-4c3e-a860-6779fde0ab99</guid><dc:creator>morpho</dc:creator><description>&lt;p&gt;Yes, it does after the notification has been enabled in the app&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459842?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 07:23:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2cc8460a-2968-43e9-be62-1f1ccd3ec03a</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;There are no known issues with receiving notifications in the app. Have you checked whether sd_ble_gatts_hvx() returns NRF_SUCCESS?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459820?ContentTypeID=1</link><pubDate>Tue, 12 Dec 2023 03:07:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:67f6bdb0-678d-4c13-aff8-fc31d968ec2d</guid><dc:creator>morpho</dc:creator><description>&lt;p&gt;Fair.&lt;br /&gt;Since the upgrade, I haven&amp;#39;t been seeing Value attribute in the BLE service modifying despite being set via&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;sd_ble_gatts_hvx &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can&amp;#39;t upload photos (nrf website being buggy)&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459754?ContentTypeID=1</link><pubDate>Mon, 11 Dec 2023 16:37:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:99e8ba16-ebc2-4628-9cbf-8967c8fcf4a9</guid><dc:creator>Johnny Nguyen</dc:creator><description>&lt;p&gt;To add, swipe right/left when you run into this bug on the old version of the app, those tabs will populate.&lt;/p&gt;
&lt;p&gt;(&lt;a href="https://github.com/NordicSemiconductor/IOS-nRF-Connect/issues/137"&gt;ref&lt;/a&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect app upgrade</title><link>https://devzone.nordicsemi.com/thread/459590?ContentTypeID=1</link><pubDate>Sat, 09 Dec 2023 12:00:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8500d8f1-9485-4f95-aaf0-1322f3b76cfc</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello, this was a bug in version 2.7, but should be fixed in 2.7.1. Version 2.7.2 is available on the app store now.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>