<?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>Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/3050/demo-and-sdk-6-0-0</link><description>Hello, 
 I have one Eval-Kit (v2.2.0) and I had no problems with SDK5.2.0 and demo programs defined in nRF51822 Evaluation Kit User Guide v1.2. Now I have installed SDK6.0.0 and I try to proceed in the same way but demos are not working now: blinking</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 24 Sep 2014 00:23:33 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/3050/demo-and-sdk-6-0-0" /><item><title>RE: Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/thread/11421?ContentTypeID=1</link><pubDate>Wed, 24 Sep 2014 00:23:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0c94689f-6ae4-49ca-b882-4c4dec95c94a</guid><dc:creator>Lee Livezey</dc:creator><description>&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/thread/11420?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2014 14:20:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b67f576b-e320-4148-87ee-2e46d1bbb767</guid><dc:creator>Dani</dc:creator><description>&lt;p&gt;Advertising-init should be:
static void advertising_init(void)
{
uint32_t      err_code;
ble_advdata_t advdata;
ble_advdata_t scanrsp;
uint8_t       flags = BLE_GAP_ADV_FLAGS_LE_ONLY_LIMITED_DISC_MODE;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ble_uuid_t adv_uuids[] = {{LBS_UUID_SERVICE, m_lbs.uuid_type}};

// Build and set advertising data
memset(&amp;amp;advdata, 0, sizeof(advdata));

advdata.name_type               = BLE_ADVDATA_FULL_NAME;
advdata.include_appearance      = true;
advdata.flags.size              = sizeof(flags);
advdata.flags.p_data            = &amp;amp;flags;

	
memset(&amp;amp;scanrsp, 0, sizeof(scanrsp));
scanrsp.uuids_complete.uuid_cnt = sizeof(adv_uuids) / sizeof(adv_uuids[0]);
scanrsp.uuids_complete.p_uuids = adv_uuids;

err_code = ble_advdata_set(&amp;amp;advdata, &amp;amp;scanrsp);
APP_ERROR_CHECK(err_code);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/thread/11419?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2014 14:00:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2de13cc7-b726-444d-a3b7-6e2cb5237468</guid><dc:creator>Lee Livezey</dc:creator><description>&lt;p&gt;Dani,
Could you be more specific. I&amp;#39;m having the same problem. I&amp;#39;m looking at advertising_init:
ble_uuid_t adv_uuids[] =
{
{BLE_UUID_HEART_RATE_SERVICE,         BLE_UUID_TYPE_BLE},
{BLE_UUID_BATTERY_SERVICE,            BLE_UUID_TYPE_BLE},
{BLE_UUID_DEVICE_INFORMATION_SERVICE, BLE_UUID_TYPE_BLE}
};
and comparing these with the S110 migration notes but don&amp;#39;t see the mistake.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/thread/11423?ContentTypeID=1</link><pubDate>Tue, 15 Jul 2014 16:07:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f81da79-1aae-44b4-a8fd-38fde93c3461</guid><dc:creator>vdskim</dc:creator><description>&lt;p&gt;I have the same problem.... Where can I find the solution?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/thread/11422?ContentTypeID=1</link><pubDate>Tue, 15 Jul 2014 06:49:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c7b91c6f-0e2f-49c8-aa2d-f34b60f457b5</guid><dc:creator>Mike</dc:creator><description>&lt;p&gt;I have the same problem, could you tell how solve it?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Demo and SDK 6.0.0</title><link>https://devzone.nordicsemi.com/thread/11418?ContentTypeID=1</link><pubDate>Tue, 08 Jul 2014 14:00:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b2439bda-d013-4930-a0f3-8f3faab15504</guid><dc:creator>Dani</dc:creator><description>&lt;p&gt;Already solved: adv_uuids[] in &amp;#39;advertising_init&amp;#39; function was wrong.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>