<?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>ble data transfer</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/41150/ble-data-transfer</link><description>hi....... 
 i am facing the issue while i am transferring the data via ble to ble_app_uart ... 
 i am using nrf52382 and segger 15.2v 
 Here if send the one data over ble , its not receiving .. if i send the three or more data i am receiving data in ble_uart</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 04 Dec 2018 05:14:59 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/41150/ble-data-transfer" /><item><title>RE: ble data transfer</title><link>https://devzone.nordicsemi.com/thread/160109?ContentTypeID=1</link><pubDate>Tue, 04 Dec 2018 05:14:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ec5b2993-d7a7-4eaa-beec-20764516cc92</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Hi saral,&lt;/p&gt;
&lt;p&gt;if possible try this&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void read_sensor_data()
{
   
      m_xfer_done = false;
    uint16_t length;
          
      char str[80];
      
    
  nrf_drv_twi_rx(&amp;amp;m_twi, LM75B_ADDR, &amp;amp;m_sample, sizeof(m_sample));
  nrf_delay_ms(1000);
  length = sprintf(str,&amp;quot;%d&amp;quot;, m_sample);
      NRF_LOG_INFO(&amp;quot;tempstr = %s  \r\n&amp;quot;,str);
      
   ble_nus_data_send(&amp;amp;m_nus,str, &amp;amp;length, m_conn_handle);
   
     NRF_LOG_INFO(&amp;quot;temp = %5d  \r\n&amp;quot;, m_sample);
     NRF_LOG_INFO(&amp;quot;Data send...&amp;quot;);
        NRF_LOG_FLUSH();
        }&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>