<?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>uart sample application failed</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/79/uart-sample-application-failed</link><description>I download uart sample from Nordic developer zone . at devzone.nordicsemi.com/.../is-there-a-serial-port-profile-for-ble 
 Because you had build the uart profile and iOS.so i want to use project to develop. 
 But,Now I found the bug,that is when i connect</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 29 Jul 2013 09:32:15 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/79/uart-sample-application-failed" /><item><title>RE: uart sample application failed</title><link>https://devzone.nordicsemi.com/thread/449?ContentTypeID=1</link><pubDate>Mon, 29 Jul 2013 09:32:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2a945f72-25d8-4d04-b740-06092689e6f0</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;I&amp;#39;m sorry for the delayed answer, but I&amp;#39;ve been on vacation. However, I&amp;#39;m having some trouble understanding your question. If you have a new question, I suggest you post it as a separate one, and try to explain a little more what the problem actually is.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: uart sample application failed</title><link>https://devzone.nordicsemi.com/thread/448?ContentTypeID=1</link><pubDate>Mon, 08 Jul 2013 06:13:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:690bf3e8-24c5-4e0a-8f09-a21b0a25542f</guid><dc:creator>steven</dc:creator><description>&lt;p&gt;thank you for reply and help .
Now, I have run success this sample .
Can you give me connect transfer state ,
ex: BLE_CONN_PARAMS_EVT_FAILED or other  event&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: uart sample application failed</title><link>https://devzone.nordicsemi.com/thread/447?ContentTypeID=1</link><pubDate>Fri, 05 Jul 2013 09:40:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8a1724cf-be15-4b7b-aa64-30dab4a03e26</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;This happens since the ble_conn_params module got a new event in SDK 4.3.0, to say that connection parameters have been updated.&lt;/p&gt;
&lt;p&gt;Unfortunately, the default handler in 4.2, which was used in the UART application, checks the event type, and if it is not the correct, it basically asserts. The on_conn_params_evt() method in main should therefore be modified to be as follows:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
static void on_conn_params_evt(ble_conn_params_evt_t * p_evt)
{
    uint32_t err_code;
    
    if(p_evt-&amp;gt;evt_type == BLE_CONN_PARAMS_EVT_FAILED)
    {
        err_code = sd_ble_gap_disconnect(m_conn_handle, BLE_HCI_CONN_INTERVAL_UNACCEPTABLE);
        APP_ERROR_CHECK(err_code);
    }
}

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I&amp;#39;m sorry for the inconvenience caused. Please see &lt;a href="http://devzone.nordicsemi.com/index.php/nrf-uart-app"&gt;this question&lt;/a&gt; for the updated app.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>