<?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>Printf() interrupted; SDK130</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/15124/printf-interrupted-sdk130</link><description>Dear all, 
 I&amp;#39;m using SDk130 and the Software is based on the ble_app_uart_c example.
Now I want to scan the advertising data from a peripheral (device name, peer address, raw data etc.) and
output it via UART on a terminal programm. The output is</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 13 Jul 2016 14:36:00 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/15124/printf-interrupted-sdk130" /><item><title>RE: Printf() interrupted; SDK130</title><link>https://devzone.nordicsemi.com/thread/57739?ContentTypeID=1</link><pubDate>Wed, 13 Jul 2016 14:36:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a45e3808-740a-419d-8c18-2467125656b7</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;You have probably used up the UART TX buffer which is set up to 256 bytes in the ble_app_uart example. When the buffer/fifo is full bytes will be dropped (printf does not care about the NRF_ERROR_NO_MEM return value).&lt;/p&gt;
&lt;p&gt;You are printing alot of text in the event. Remember that sending data over UART actually takes time. Running at 115200 baud with one start bit and one stop bit the data rate is about 11.5 kB/s. Increasing the buffer may fix your problem, but if you get too many events you may experience that the buffer will still be filled up some times. You should consider using RTT instead (with enough buffer set up), or print less text.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>