<?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>nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/33206/nrf51-dk-sdkv10-with-s110-ibeacon-beacon-example-how-to-increase-tx-power</link><description>My requirement is simple: Want to increase the iBeacon transmit power to (i.e. -4, 0 or 4dbm). In the beacon example, I tried adding in the main loop after calling advertising_init(): 
 
 where TX_POWER_LEVEL is defined as 0. 
 However when I execute</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 25 Apr 2018 14:10:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/33206/nrf51-dk-sdkv10-with-s110-ibeacon-beacon-example-how-to-increase-tx-power" /><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/129803?ContentTypeID=1</link><pubDate>Wed, 25 Apr 2018 14:10:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a87ba940-b849-47af-a226-6470ccd53640</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;This is normal I would say.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/128007?ContentTypeID=1</link><pubDate>Thu, 12 Apr 2018 09:48:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:19a21e4d-fa0a-46c3-b403-2f93fc06d4d1</guid><dc:creator>Nitin Solanki</dc:creator><description>&lt;p&gt;And all of the above measurements are in line-of-sight with various orientations.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127874?ContentTypeID=1</link><pubDate>Wed, 11 Apr 2018 15:03:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a79c6157-098d-446e-9a60-f4cbfe77269e</guid><dc:creator>Nitin Solanki</dc:creator><description>&lt;p&gt;I tried it, and do see some effect on the output.&lt;/p&gt;
&lt;p&gt;With tx_power = -40, I got rssi of -100 at 1m.&lt;/p&gt;
&lt;p&gt;With tx_power = 4. I got rssi of -61 at 1m.&lt;/p&gt;
&lt;p&gt;Is it normal that there is such a huge difference between tx power and rssi@1m?&lt;/p&gt;
&lt;p&gt;When it is transmitting at +4dbm, shouldn&amp;#39;t I receive a much stronger signal than -61dbm at 1 meter?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Nitin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127685?ContentTypeID=1</link><pubDate>Tue, 10 Apr 2018 17:53:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8f654ef2-52ac-4ee0-a4bc-783ad45c2531</guid><dc:creator>Nitin Solanki</dc:creator><description>&lt;p&gt;I have tried various values from -20 to +4, but there is no difference in measured rssi@1m. I have also tried the same code on our custom PCB with nRF51822. I am not getting higher transmit power there as well.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127664?ContentTypeID=1</link><pubDate>Tue, 10 Apr 2018 14:51:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a66bdeb1-61cc-4959-bcf1-42867696b448</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Is there any difference if you use:&lt;/p&gt;
&lt;p&gt;&lt;span style="float:none;background-color:transparent;color:#000000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;int8_t tx_power&lt;/span&gt; = 0; //&amp;nbsp;-40, -20, -16, -12, -8, -4, 0, 3, and 4&lt;/p&gt;
&lt;p&gt;err_code = sd_ble_gap_tx_power_set(&lt;span style="float:none;background-color:transparent;color:#000000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;tx_power&lt;/span&gt;);&lt;/p&gt;
&lt;p&gt;APP_ERROR_CHECK(err_code);&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127500?ContentTypeID=1</link><pubDate>Mon, 09 Apr 2018 17:10:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:374df223-766e-4b44-9e05-6bb042dd34af</guid><dc:creator>Nitin Solanki</dc:creator><description>&lt;p&gt;Hi Kenneth, I have tried measuring the as several locations, I just mentioned the closest measurement of atround-35dbm. At around 1 meter, I am consistently getting measured rssi in the range of -60dbm or less.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;int main(void)
{
    uint32_t err_code;
    // Initialize.
    APP_TIMER_INIT(APP_TIMER_PRESCALER, APP_TIMER_OP_QUEUE_SIZE, false);
    err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
    APP_ERROR_CHECK(err_code);
    ble_stack_init();
    advertising_init();
		
		err_code = sd_ble_gap_tx_power_set(0); //Radio transmit power in dBm (accepted values are -40, -30, -20, -16, -12, -8, -4, 0, and 4 dBm).
    APP_ERROR_CHECK(err_code);
		
    // Start execution.
    advertising_start();

    // Enter main loop.
    for (;; )
    {
				err_code = sd_ble_gap_tx_power_set(0); //Radio transmit power in dBm (accepted values are -40, -30, -20, -16, -12, -8, -4, 0, and 4 dBm).
				APP_ERROR_CHECK(err_code);
        power_manage();
    }
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I have even tried calling&amp;nbsp;sd_ble_gap_tx_power_set(0) inside the for loop, which has no effect either.&lt;/p&gt;
&lt;p&gt;-Nitin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127493?ContentTypeID=1</link><pubDate>Mon, 09 Apr 2018 16:16:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4c0ef7d3-9b11-43b4-80ad-e81525b77548</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hi, that explains your problems. You should measure conducted or according to the ibeacon guidelines (1 meter away&amp;nbsp;&amp;gt; 10 seconds). If you want to measure any difference it is essential that neither phone or ibeacon change orientation, distance, or location when changing the output power. In your case you are measuring in the near fields of the antenna,&amp;nbsp;which will give strange results.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127481?ContentTypeID=1</link><pubDate>Mon, 09 Apr 2018 15:17:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6702ea48-e21f-4475-835e-37a1ec3b5605</guid><dc:creator>Nitin Solanki</dc:creator><description>&lt;p&gt;I am measuring it using a smartphone apps such as Beacon Analyzer, Beacon Scanner, etc. The measured RSSI when I keep the smartphone right on top of the dev kit is always around -35dbm.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127479?ContentTypeID=1</link><pubDate>Mon, 09 Apr 2018 15:12:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dcf96e1a-1480-4e74-9ab5-a375d3156c46</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hi, how are you measuring this? Are you observering RSSI on a peer device or are you measuring conducted using a spectrum analyzer?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF51 DK SDKv10 with S110 iBeacon beacon example: How to increase TX power?</title><link>https://devzone.nordicsemi.com/thread/127404?ContentTypeID=1</link><pubDate>Mon, 09 Apr 2018 10:48:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:573f7821-15b8-483c-a84e-2161c8977899</guid><dc:creator>Nitin Solanki</dc:creator><description>&lt;p&gt;I tried the same with S130 softdevice as well, but I am getting the same issue. The actual transmit power is not increasing&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>