<?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>Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/88982/connection-terminated-by-remote-user-why</link><description>Dear All 
 I tried to connect to an apple device, it is successful but soon after that, it is disconnected with reason code 0x13 - terminated by remote user, I tried to change the connection parameters to its preference, and disconnection still happens</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 22 Jun 2022 11:19:44 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/88982/connection-terminated-by-remote-user-why" /><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/373641?ContentTypeID=1</link><pubDate>Wed, 22 Jun 2022 11:19:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62e74a10-8a8b-4eb0-ade4-73c20a415d92</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Hi, Sigurd&lt;/p&gt;
&lt;p&gt;I tried to call&amp;nbsp;&lt;span&gt;bt_gatt_discover_continue() afterwards and it works.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt; To find all services without knowing any UUID first,&amp;nbsp;call&amp;nbsp;&amp;nbsp;bt_gatt_discover_start()&amp;nbsp;with NULL as UUID and call&amp;nbsp;bt_gatt_discover_continue() afterwards until no more service is discovered.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;bt_gatt_discover_start() finds only 1 service at a time.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;thanks for your help!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Ping&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/373509?ContentTypeID=1</link><pubDate>Tue, 21 Jun 2022 14:51:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:07b79e17-afe9-4946-8b09-05f4de0f6e14</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Just noticed you suggest to call bt_gatt_discover() function , while in my example, I call bt_gatt_discover_start() function. The later pass more parameters down and allow calling a callback function afterwards.&lt;/p&gt;
&lt;p&gt;But what is the difference fundamentally? which one I should use ? do I need to call&amp;nbsp;&lt;span&gt;bt_gatt_discover_continue()?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Regards!&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/373503?ContentTypeID=1</link><pubDate>Tue, 21 Jun 2022 14:37:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:936600f8-7d8a-4e53-9258-e0aa344e09bd</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Hello, Sigurd&lt;/p&gt;
&lt;p&gt;Thank you for reply.&lt;/p&gt;
&lt;p&gt;I started from central BAS example, and call the following to do discovery.&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;err = bt_gatt_dm_start(conn, &lt;/span&gt;&lt;span&gt;BT_UUID_BAS&lt;/span&gt;&lt;span&gt;, &amp;amp;discovery_cb, &lt;/span&gt;&lt;span&gt;NULL&lt;/span&gt;&lt;span&gt;); &amp;nbsp;&lt;/span&gt;&lt;span&gt;//or NULL&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; when I pass&amp;nbsp;BT_UUID_BAS as uuid, the service it found is printed as below:&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;The discovery procedure succeeded

ATT[1]:     UUID: 0x2803    Handle: 0x0011    Value:

    Characteristic: 0x2a19    Properties: 0x0012

ATT[2]:     UUID: 0x2a19    Handle: 0x0012    Value:

ATT[3]:     UUID: 0x2902    Handle: 0x0013    Value:

    CCCD&lt;/pre&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;while when I pass NULL as uuid, following attributes&amp;nbsp;are found - it is the mandatory Generic Attribute(0x1801) of the peripheral rather than BT_UUID_BAS.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;The discovery procedure succeeded

ATT[1]:     UUID: 0x2803    Handle: 0x0002    Value:

    Characteristic: 0x2a05    Properties: 0x0020

ATT[2]:     UUID: 0x2a05    Handle: 0x0003    Value:

ATT[3]:     UUID: 0x2902    Handle: 0x0004    Value:

    CCCD

ATT[4]:     UUID: 0x2803    Handle: 0x0005    Value:

    Characteristic: 0x2b29    Properties: 0x000A

ATT[5]:     UUID: 0x2b29    Handle: 0x0006    Value:

ATT[6]:     UUID: 0x2803    Handle: 0x0007    Value:

    Characteristic: 0x2b2a    Properties: 0x0002

ATT[7]:     UUID: 0x2b2a    Handle: 0x0008    Value:
&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;They are for same peripheral - the Nordic mouse one. I expect it to find all services include &lt;span&gt;BT_UUID_BAS(0x180F) and another one 0x1812, and more. But it doesn&amp;#39;t.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Could you explain what I have done wrong please?&amp;nbsp;how can I find all without knowing the UUID in advance please?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Regards!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Ping&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/373201?ContentTypeID=1</link><pubDate>Mon, 20 Jun 2022 11:13:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a7141723-bc31-4ec7-9dd0-db8000058c4b</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;You can use the&amp;nbsp;bt_gatt_discover() API for that. From:&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.1/zephyr/reference/bluetooth/gatt.html#generic-attribute-profile-gatt"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.1/zephyr/reference/bluetooth/gatt.html#generic-attribute-profile-gatt&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;&lt;span&gt;Discover procedures can be initiated with the use of&amp;nbsp;&lt;/span&gt;&lt;a title="bt_gatt_discover" href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.1/zephyr/reference/bluetooth/gatt.html#c.bt_gatt_discover"&gt;&lt;code&gt;&lt;span&gt;bt_gatt_discover()&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;&lt;span&gt;&amp;nbsp;API which takes the&amp;nbsp;&lt;/span&gt;&lt;a title="bt_gatt_discover_params" href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.1/zephyr/reference/bluetooth/gatt.html#c.bt_gatt_discover_params"&gt;&lt;code&gt;&lt;span&gt;bt_gatt_discover_params&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;&lt;span&gt;&amp;nbsp;struct which describes the type of discovery. The parameters also serves as a filter when setting the&amp;nbsp;&lt;/span&gt;&lt;code&gt;&lt;span&gt;uuid&lt;/span&gt;&lt;/code&gt;&lt;span&gt;&amp;nbsp;field only attributes which matches will be discovered, in contrast setting it to NULL allows all attributes to be discovered.&amp;quot;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/373198?ContentTypeID=1</link><pubDate>Mon, 20 Jun 2022 10:59:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:54beab9f-a355-445e-97fe-fbdf079013e0</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;I am developing a central app - a generic one applies to all peripherals hopefully, so need to figure out what other centrals do in terms of findings all services and UUIDs - there must be a procedure/way for these centrals like nRF Connect to follow to find all services available from any peripheral without knowing its protocols already - am I right?&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards!&lt;/p&gt;
&lt;p&gt;Ping&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/373191?ContentTypeID=1</link><pubDate>Mon, 20 Jun 2022 10:30:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cd9dbb39-5f98-4e71-b37d-e8c247e02a10</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Probably easiest is to use e.g. nRF Connect Desktop BLE app, or nRF Connect for mobile app, connect to the device, and check out the services and UUIDs.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372968?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 09:18:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b1037f6f-ebbe-4987-8787-42e3c7f2c0c7</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;possibly, but some other peripherals do not do that - just stay connected even no activities going on.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am about to&amp;nbsp;do service discovery immediately after connection, have a question here - how&amp;nbsp;do&amp;nbsp;I determine which service UUID&amp;nbsp;I pass to the discovery manager?&amp;nbsp;for this particular one, it seems advertising manufacturer data which has its own manufacturer ID and 128 bits service UUID, so I presume I need to know the manufacturer&amp;#39;s advertising data protocol ? is this published somewhere?&lt;/p&gt;
&lt;p&gt;Thank you for your patience!&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372961?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 08:54:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:36d09ef2-8ff1-4bd4-94f2-66d4955bb5cc</guid><dc:creator>Sigurd</dc:creator><description>[quote user="PingISTL"]See the attachment please. It was caught a few days ago,[/quote]
&lt;p&gt;Here we can see the central do a service discovery,&amp;nbsp;does read requests, enables notifications, etc. So the activity here likely makes the connection stay alive. If there is no&amp;nbsp;&lt;span&gt;activity, you just connect, the slave in the other sniffer trace seems to detect that, and deliberately disconnects after a timeout period with no activity.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372841?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 13:45:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4bfafcf1-4416-4490-9dad-42b1248d013e</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/CEConnectWithPhone.pcapng"&gt;devzone.nordicsemi.com/.../CEConnectWithPhone.pcapng&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hi, Sigurd&lt;/p&gt;
&lt;p&gt;See the attachment please. It was caught a few days ago, I tried to do it again today and unfortunately, the sniffer doesn&amp;#39;t work for me now. It sees advertisng packets, but doean&amp;#39;t seems catch the connection activities. Not sure why.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;Ping&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372826?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 13:00:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dd8b28fa-d367-44a9-a3b3-72b318d662bd</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;I will try to catch it and send, thanks!&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372821?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 12:50:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:edc7a1ef-b81e-47c2-9b6b-e8bbad28d1ab</guid><dc:creator>Sigurd</dc:creator><description>[quote userid="113482" url="~/f/nordic-q-a/88982/connection-terminated-by-remote-user-why/372817#372817"]BeaconSimulator is able to talk to it without being disconnected.[/quote]
&lt;p&gt;Hmm, do you have sniffer trace with that? So we can compare it with the other sniffer trace?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372817?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 12:45:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8ae3f978-2c37-42a1-8766-b078ee463286</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Hi, thanks&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I will try to read the apple development support.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;nrf connect app seems to be same, but another app - BeaconSimulator is able to talk to it without being disconnected.&lt;/p&gt;
&lt;p&gt;I tried change connection parameters, and doesn&amp;#39;t help, any thing you could think?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372789?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 11:40:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:75998d9f-890a-452e-b8d7-57bc3a414d15</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Ok, I see. Maybe you could try the&amp;nbsp;Apple&amp;nbsp;Developer Support.&amp;nbsp;&lt;a href="https://developer.apple.com/support/"&gt;https://developer.apple.com/support/&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372785?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 11:27:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:35b76371-571a-4665-9566-9c02d917e29c</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Unfortunately, this is one of Apple&amp;#39;s product, and I don&amp;#39;t have source code to access it, my project now is develop an central application talking to other peripherals like this one.&lt;/p&gt;
&lt;p&gt;Thank for reply!&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372782?ContentTypeID=1</link><pubDate>Thu, 16 Jun 2022 11:21:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8c6f9aa9-5760-4a2d-a719-1c4c7f575ef6</guid><dc:creator>Sigurd</dc:creator><description>[quote user="PingISTL"]seems like the slave is initiate the LL_TERMINTE_IND, am I right?[/quote]
&lt;p&gt;Correct. The slaves terminates the connection. If you have the firmware for this slave, then as mentioned,&lt;span&gt;&amp;nbsp;it&amp;#39;s likely calling&amp;nbsp;&lt;/span&gt;&lt;span&gt;bt_conn_disconnect() somewhere, and maybe you can try place a breakpoint&amp;nbsp;at these locations, debug and find out why it&amp;#39;s being called.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372629?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 15:01:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:feb18391-2d38-483a-8c3f-21f63c642e7e</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;slave is Apple device -&lt;span&gt;AC233F8153CE,&lt;/span&gt; it is a beacon. Master is my central app or phone.&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372625?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 14:49:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9def17cc-217e-4e5a-82fe-0c3e8446d858</guid><dc:creator>Sigurd</dc:creator><description>[quote user="PingISTL"]the highlighted line on No 329, seems like the slave is initiate the LL_TERMINTE_IND, am I right?&amp;nbsp;[/quote]
&lt;p&gt;Is the slave the nRF52 or the apple device?&lt;/p&gt;
&lt;p&gt;&lt;span&gt;AC233F8153CE is nrf52 or apple device?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372582?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 13:06:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:76cb0c2b-0bf2-498f-9c37-31d19a327e4e</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Hi, Sigurd&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think my application is calling the disconnect function somewhere, here is the screenshot for it. the highlighted line on No 329, seems like the slave is initiate the LL_TERMINTE_IND, am I right?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also, it happens with nrf Connect mobile app when I try to connect it with my phone. But this doesn&amp;#39;t happen with BeaconSimulator App running on phone.&lt;/p&gt;
&lt;p&gt;Regards!&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/960x720/__key/communityserver-discussions-components-files/4/pastedimage1655298237495v3.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372561?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 12:12:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:be6cd4a2-11aa-4a93-9808-d84b15431982</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Your application is likely calling&amp;nbsp;&lt;span&gt;bt_conn_disconnect() somewhere. Maybe you can place a breakpoint&amp;nbsp;at these locations, and debug and find out why it&amp;#39;s being called.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372557?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 12:01:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6b0aaf6b-849c-473d-85a6-de22c0f28f99</guid><dc:creator>PingISTL</dc:creator><description>&lt;p&gt;Hello, Sigurd&lt;/p&gt;
&lt;p&gt;Thanks for reply, here is the sniffer log for&amp;nbsp;it, the device MAC address is&amp;nbsp;&lt;span&gt;AC233F8153CE.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/CEconnect_2600_disconnect.pcapng"&gt;devzone.nordicsemi.com/.../CEconnect_2600_disconnect.pcapng&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Ping&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connection terminated by remote user, why?</title><link>https://devzone.nordicsemi.com/thread/372512?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 09:09:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f2069c19-bbc2-4e11-86f4-b41c9f8fc0d5</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;A sniffer trace might give us some more insight to what happens. Please capture a sniffer trace of the behavior.&amp;nbsp;&lt;a href="https://www.nordicsemi.com/Products/Development-tools/nRF-Sniffer-for-Bluetooth-LE"&gt;https://www.nordicsemi.com/Products/Development-tools/nRF-Sniffer-for-Bluetooth-LE&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>