<?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>nrf52833 maximum power transfer @8dbm</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/71840/nrf52833-maximum-power-transfer-8dbm</link><description>Hi All ! 
 Hope doing well . I have a question regarding nrf52833 maximum power transfer @ 8dbm . I am using the &amp;quot;ble_beacon app&amp;quot; and using sdk 17.2.0 and soft device is S140.I tried many tests but results are almost the same . here are the my tests and</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 02 Mar 2021 03:53:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/71840/nrf52833-maximum-power-transfer-8dbm" /><item><title>RE: nrf52833 maximum power transfer @8dbm</title><link>https://devzone.nordicsemi.com/thread/297032?ContentTypeID=1</link><pubDate>Tue, 02 Mar 2021 03:53:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:17433d18-c1dd-4379-9843-8334640f5626</guid><dc:creator>Muhammad Usman</dc:creator><description>&lt;p&gt;Thank you Vidar !&lt;/p&gt;
&lt;p&gt;It worked for me ! Sorry for late response&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52833 maximum power transfer @8dbm</title><link>https://devzone.nordicsemi.com/thread/295613?ContentTypeID=1</link><pubDate>Mon, 22 Feb 2021 14:04:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c61f3d1b-591b-4f14-9cfc-bf651875de3c</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;The correct GAP role to use with the Beacon sample is &amp;#39;&lt;span&gt;BLE_GAP_TX_POWER_ROLE_ADV&amp;#39; as it only advertises. Maybe you supplied the wrong handle argument to &lt;span&gt;&lt;a title="sd_ble_gap_tx_power_set" href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s140.api.v7.2.0/group___b_l_e___g_a_p___f_u_n_c_t_i_o_n_s.html?cp=4_7_4_1_2_1_3_41#gad10e80ba20ddab42d1753fd1be2d8c26"&gt;sd_ble_gap_tx_power_set&lt;/a&gt;&lt;/span&gt;()? This will cause the function to return with an error (followed by a reset if you use the default SDK error handling - &lt;span&gt;&lt;a title="Error module" href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/lib_error.html?cp=7_1_3_13"&gt;Error module)&lt;/a&gt;&lt;/span&gt;. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Please try setting the TX power in the advertising_init function as the snippet below shows.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/**@brief Function for initializing the Advertising functionality.
 *
 * @details Encodes the required advertising data and passes it to the stack.
 *          Also builds a structure to be passed to the stack when starting advertising.
 */
static void advertising_init(void)
{
    ...
    
    err_code = sd_ble_gap_adv_set_configure(&amp;amp;m_adv_handle, &amp;amp;m_adv_data, &amp;amp;m_adv_params);
    APP_ERROR_CHECK(err_code);

    err_code = sd_ble_gap_tx_power_set(BLE_GAP_TX_POWER_ROLE_ADV, m_adv_handle, 8);
    APP_ERROR_CHECK(err_code);
}&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Vidar&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></channel></rss>