<?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>Central role with high Bandwidth problem</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/19416/central-role-with-high-bandwidth-problem</link><description>Hi, 
 I am using a custom board with a nrf51422, SDK11, S130 v2.0.1 with central role. 
 I have made changes on the code to change from MID bandwidth to High. I added the following code to the ble_stack_init : 
 /* Example for one medium-bandwidth</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 15 Mar 2017 09:41:33 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/19416/central-role-with-high-bandwidth-problem" /><item><title>RE: Central role with high Bandwidth problem</title><link>https://devzone.nordicsemi.com/thread/75350?ContentTypeID=1</link><pubDate>Wed, 15 Mar 2017 09:41:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bb99ba5f-38e5-46a8-aef3-f95b8cf6b794</guid><dc:creator>Jackxl</dc:creator><description>&lt;p&gt;I have MiniBeacon as peripheral nrf51822xAB and PCA10028 as central. I solved my problem when I have increased QUETED_WRITE_BUFFER_SIZE from 80 to 200 bytes. Now I don&amp;#39;t need 6 buffers.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Central role with high Bandwidth problem</title><link>https://devzone.nordicsemi.com/thread/75349?ContentTypeID=1</link><pubDate>Wed, 15 Mar 2017 08:21:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2dae514a-f82b-4947-afb7-575f64a91b5e</guid><dc:creator>FormerMember</dc:creator><description>&lt;p&gt;Which device is at the other side of the link? Do you know that that device supports more than 3 packets per connection interval?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Central role with high Bandwidth problem</title><link>https://devzone.nordicsemi.com/thread/75348?ContentTypeID=1</link><pubDate>Mon, 13 Mar 2017 10:12:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f63f7b68-2416-4e0a-a559-97d3b6b15ccf</guid><dc:creator>Jackxl</dc:creator><description>&lt;p&gt;Fce sd_ble_tx_packet_count_get shows me 6 buffers, but It still doesn&amp;#39;t work. I want send 80 bytes,but only 54 bytes is send.it seems only 3 tx buffers.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Central role with high Bandwidth problem</title><link>https://devzone.nordicsemi.com/thread/75347?ContentTypeID=1</link><pubDate>Fri, 03 Feb 2017 09:44:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:567d3357-ca9f-4717-8aa9-4646ae8129f1</guid><dc:creator>FormerMember</dc:creator><description>&lt;p&gt;&lt;strong&gt;1)&lt;/strong&gt;
To set high bandwidth, you can try the following:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;uint32_t  opt_id;
uint32_t  err_code;
ble_opt_t softdevice_options;

....
ble_stack_init();
....
softdevice_options.common_opt.conn_bw.role               = BLE_GAP_ROLE_CENTRAL;  	      
softdevice_options.common_opt.conn_bw.conn_bw.conn_bw_rx = BLE_CONN_BW_HIGH;
softdevice_options.common_opt.conn_bw.conn_bw.conn_bw_tx = BLE_CONN_BW_HIGH;

err_code = sd_ble_opt_set(BLE_COMMON_OPT_CONN_BW, &amp;amp;softdevice_options);
APP_ERROR_CHECK(err_code);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;2)&lt;/strong&gt; When I test here, it is not necessary to change RAM settings when enabling high bandwidth . Whether or not high bandwidth will affect UART, SPI, TWI, you would need to test.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>