<?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>Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/75282/increase-data-speed-in-nus-nrf52</link><description>Hey, I&amp;#39;ve a string of less than 10 bytes (10 characters max) and I&amp;#39;m establishing the connection between the Central (nRF52833-DK) and the Peripheral (nRF52810) and I&amp;#39;ve set-up the NUS bridge for the data-transfer. The problem is, I&amp;#39;ve not satisfied with</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 04 Jun 2021 12:01:10 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/75282/increase-data-speed-in-nus-nrf52" /><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/313649?ContentTypeID=1</link><pubDate>Fri, 04 Jun 2021 12:01:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b9a00cb4-4a5c-4675-9f83-6d5e5de0f460</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Do you have the same connection parameters as the throughput example?&lt;/p&gt;
&lt;p&gt;You can read more about the example you tested here: &lt;br /&gt;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/ble_sdk_app_att_mtu.html"&gt;https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/ble_sdk_app_att_mtu.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/312784?ContentTypeID=1</link><pubDate>Tue, 01 Jun 2021 08:40:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ab496693-f5ea-45e9-a033-d61db8f86386</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Any update?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/312204?ContentTypeID=1</link><pubDate>Thu, 27 May 2021 17:42:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4aa3cb57-768f-43a8-ac48-5932e24d76bc</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Hi any update for previous message &lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;i found this example in devzone&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/ble_5F00_app_5F00_uart_5F00_throughput_5F00_test.zip"&gt;devzone.nordicsemi.com/.../ble_5F00_app_5F00_uart_5F00_throughput_5F00_test.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1622136959888v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void send_data()
{
    static uint8_t counter;
    static uint8_t data_array[BLE_NUS_MAX_DATA_LEN];

    uint32_t       err_code;
    uint16_t       length = m_ble_nus_max_data_len;

   
    err_code = ble_nus_data_send(&amp;amp;m_nus, data_array, &amp;amp;length, m_conn_handle);
    if (err_code == NRF_SUCCESS)
    {
         m_tot_num_bytes += length;
         data_array[0]=counter++;
    }

}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;for the above lines i got nearly &lt;strong&gt;282KBPS&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I changed the lines to my defined one &lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void send_data()
{
    static uint8_t counter;
    static uint8_t data_array[BLE_NUS_MAX_DATA_LEN];

    uint32_t       err_code;
    uint16_t       length = m_ble_nus_max_data_len,length1;
    char str[20];
    length1 = sprintf(str, &amp;quot;%d,%d\n&amp;quot;,counter,counter+1);            
    err_code = ble_nus_data_send(&amp;amp;m_nus, str, &amp;amp;length1, m_conn_handle);            
    m_tot_num_bytes += length1;
    counter++;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1622137273329v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I got &lt;strong&gt; 23KBPS&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How do I increase the speed of it ?&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/311508?ContentTypeID=1</link><pubDate>Tue, 25 May 2021 13:49:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0074c17e-8c2f-489f-8bb8-d2f67c6b5127</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;1. Is there any hardware to measure the BLE transfer speed?&lt;/p&gt;
&lt;p&gt;2. Does BLE Transfer speed is differ from BLE Services like LBS,NUS or custom services ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/311406?ContentTypeID=1</link><pubDate>Tue, 25 May 2021 10:34:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:41a4ae50-89c8-4911-9ef6-bfc6d0da69a2</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Hi again.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hard to say if you can expect higher transfer rate if we don&amp;#39;t have information about what you are currently seeing.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is it possible that you can measure the transfer speed?&lt;/p&gt;
&lt;p&gt;Br,&amp;nbsp;&lt;br /&gt;Joakim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/311208?ContentTypeID=1</link><pubDate>Mon, 24 May 2021 06:25:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c5272e8a-8805-4ddc-a454-a5800cf7471f</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Hi any update?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/310706?ContentTypeID=1</link><pubDate>Thu, 20 May 2021 11:08:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d9c4870d-4db8-4f85-aced-14e4d85edf82</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Ah. Not using any speed measurement utility, if there is any of the speed measurement utility is available, kindly let me know I can measure it. But now as visualising it I&amp;#39;m not satisfied with the speed.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Increase data speed in NUS nRF52</title><link>https://devzone.nordicsemi.com/thread/310690?ContentTypeID=1</link><pubDate>Thu, 20 May 2021 10:26:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b0a1b116-4811-454e-af1d-4b1907ccecc9</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Hi.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Have you done any measurement on the speed of the transfer? What kind of speed are you seeing?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>