<?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>PC-BLE-Driver un-handled event with ID: 33</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/50864/pc-ble-driver-un-handled-event-with-id-33</link><description>I&amp;#39;m trying to work with the PC-BLE-Driver with the connectivity firmware. I&amp;#39;ve loaded the connectivty firmware and the application appears to connect to the board. But I&amp;#39;m unable to connect to the device with the HRM app in the nRF toolbox. I get the</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 13 Aug 2019 09:34:52 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/50864/pc-ble-driver-un-handled-event-with-id-33" /><item><title>RE: PC-BLE-Driver un-handled event with ID: 33</title><link>https://devzone.nordicsemi.com/thread/203771?ContentTypeID=1</link><pubDate>Tue, 13 Aug 2019 09:34:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5e715e65-a4b5-4a41-8c64-0d8e9a933384</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;ID 33 is the same as &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.s140.api.v6.0.0%2Fgroup___b_l_e___g_a_p___e_n_u_m_e_r_a_t_i_o_n_s.html&amp;amp;cp=3_4_3_3_2_1_1"&gt;BLE_GAP_EVT_PHY_UPDATE_REQUEST&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To handle the event, try adding this to&amp;nbsp;&lt;span&gt;ble_evt_dispatch()&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;        case BLE_GAP_EVT_PHY_UPDATE_REQUEST:
        {
            printf(&amp;quot;PHY update request.&amp;quot;);
            ble_gap_phys_t const phys =
            {
                .rx_phys = BLE_GAP_PHY_AUTO,
                .tx_phys = BLE_GAP_PHY_AUTO,
            };
            uint32_t err_code = sd_ble_gap_phy_update(m_adapter, m_connection_handle, &amp;amp;phys);
		    if (err_code != NRF_SUCCESS) 
			{
		       printf(&amp;quot;sd_ble_gap_phy_update failed, err_code %d\n&amp;quot;, err_code);
	        }
            
        } break;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>