<?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>Device Manager strange behaviour</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/3034/device-manager-strange-behaviour</link><description>Hey Guys, 
 i asked this question already few days ago, but today i produced a log-file.
The procedure was: 
 Setup: SDKv6.0, SoftDevice v7.0.0, nrf51822 
 
 empty board 
 bond first device (nexus 7) 
 bond second device (nexus 7) 
 reconnect</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 09 Jul 2014 01:27:10 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/3034/device-manager-strange-behaviour" /><item><title>RE: Device Manager strange behaviour</title><link>https://devzone.nordicsemi.com/thread/11397?ContentTypeID=1</link><pubDate>Wed, 09 Jul 2014 01:27:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:67a831b3-36f0-4e84-afeb-5cd6116e78ae</guid><dc:creator>gootoomoon</dc:creator><description>&lt;p&gt;Thanks a lot.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Device Manager strange behaviour</title><link>https://devzone.nordicsemi.com/thread/11396?ContentTypeID=1</link><pubDate>Tue, 08 Jul 2014 11:24:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0d2a4307-838f-46f6-94d8-b6052f15d3dc</guid><dc:creator>leo</dc:creator><description>&lt;p&gt;hi gootoomoon, see the new answer with the solution&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Device Manager strange behaviour</title><link>https://devzone.nordicsemi.com/thread/11398?ContentTypeID=1</link><pubDate>Tue, 08 Jul 2014 11:23:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e100515d-6ea3-4c4c-a523-d3cf9b4a6b92</guid><dc:creator>leo</dc:creator><description>&lt;p&gt;Hi guys,&lt;/p&gt;
&lt;p&gt;Thanks to @Krishna Shingala who found a solution for this bug.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Change the code in &lt;code&gt;device_manager_peripheral.c&lt;/code&gt; starting at 2538 from:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;if (p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_kex.irk == 1) { 
    m_peer_table[index].irk =  p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_keys.irk; 
    m_peer_table[index].id_bitmap &amp;amp;= (~IRK_ENTRY); 
}

if (p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_kex.address == 1)
{
    m_peer_table[index].peer_addr = p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_keys.id_info;
    m_peer_table[index].id_bitmap &amp;amp;= (~ADDR_ENTRY);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;if (p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_kex.irk == 1) {
    m_peer_table[device_index].irk = p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_keys.irk;
    m_peer_table[device_index].id_bitmap &amp;amp;= (~IRK_ENTRY);
}

if (p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_kex.address == 1)
{
	m_peer_table[device_index].peer_addr = p_ble_evt-&amp;gt;evt.gap_evt.params.auth_status.central_keys.id_info;
	m_peer_table[device_index].id_bitmap &amp;amp;= (~ADDR_ENTRY);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;this sould fix the problem stated above.&lt;/p&gt;
&lt;p&gt;Thanks again to Krishna!
Cheers&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Device Manager strange behaviour</title><link>https://devzone.nordicsemi.com/thread/11395?ContentTypeID=1</link><pubDate>Tue, 08 Jul 2014 09:32:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b43b8c3f-3b46-463d-9d7a-1ad35b109ff9</guid><dc:creator>gootoomoon</dc:creator><description>&lt;p&gt;I  had the same problem just like you, when I connect nexus7 and iphone4s,it seems that nrf51822 will cover old whitelist in flash.&lt;/p&gt;
&lt;p&gt;I want to know how can I get log like you?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>