<?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>Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/89071/update-mtu-exchange-procedure-not-occurring</link><description>Hello there, 
 I have read other issues regarding working with a larger MTU size, but I still have not been able to get it to work correctly. I realize that the peripheral device does not initiate the actual update, but it should request the update procedure</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 24 Jun 2022 08:56:50 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/89071/update-mtu-exchange-procedure-not-occurring" /><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/374077?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2022 08:56:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:866569dc-485f-48ce-9e31-e9953b8407d6</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Glad to hear that it worked!&lt;/p&gt;
&lt;p&gt;Well, being a client only means that you&amp;#39;re allowed to send requests to a server, such as the MTU exchange request. The only downside I can think of would be a slight increase in memory footprint, but since you&amp;#39;re using large Bluetooth buffers this might not be the biggest concern for your application?&lt;/p&gt;
&lt;p&gt;If you don&amp;#39;t want your peripheral to be a client you would have to send the MTU exchange request from your central unit, so if you&amp;#39;re not in control of the application on the central unit your peripheral will have to be a client.&lt;/p&gt;
&lt;p&gt;-Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/374045?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2022 03:24:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2a2ab3e0-8af0-4650-98ab-6ad544c82ae0</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Hello Einar,&lt;/p&gt;
&lt;p&gt;Well that definitely worked, thanks so much for your help.&lt;/p&gt;
&lt;p&gt;Can you please pass on the fact that this is not documented correctly for the case where the device is a peripheral in the server only role. To specify the device as a client in order to force the MTU exchange is not&amp;nbsp;discussed anywhere that I could find, and to be honest it seems a bit like a hacked solution. However&amp;nbsp;if there is no other side effect of specifying &amp;quot;client&amp;quot; when it is not really a client I am okay with it.&lt;/p&gt;
&lt;p&gt;Thanks again for helping me get to the bottom of this problem.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373962?ContentTypeID=1</link><pubDate>Thu, 23 Jun 2022 13:32:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:16d93c10-6f5d-4af8-8c40-cda5a937f142</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I believe I might have figured out what is causing your issue.&lt;/p&gt;
&lt;p&gt;In the Zephyr Peripheral sample you&amp;#39;re using it looks like the&amp;nbsp;&lt;em&gt;Updated MTU&lt;/em&gt; message is printed when a connection is established, even if no MTU exchange has occurred.&lt;/p&gt;
&lt;p&gt;So your central unit probably isn&amp;#39;t initiating an MTU exchange, which just means you&amp;#39;ll have to initiate it from your peripheral.&lt;/p&gt;
&lt;p&gt;I was able to do this by adding the following lines inside&amp;nbsp;&lt;em&gt;connected()&lt;/em&gt; in main.c:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    static struct bt_gatt_exchange_params exchange_params;
    exchange_params.func = exchange_func;
    err = bt_gatt_exchange_mtu(conn, &amp;amp;exchange_params);
    if (err) {
        printk(&amp;quot;MTU exchange failed (err %d)&amp;quot;, err);
    }&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;with&amp;nbsp;&lt;em&gt;exchange_func&lt;/em&gt; defined like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void exchange_func(struct bt_conn *conn, uint8_t err, struct bt_gatt_exchange_params *params)
{
    if (!err) {
        printk(&amp;quot;MTU exchange done&amp;quot;);
    } else {
        printk(&amp;quot;MTU exchange failed (err %&amp;quot; PRIu8 &amp;quot;)&amp;quot;, err);
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I also had to add this to prj.conf in order to use the&amp;nbsp;&lt;em&gt;bt_gatt_exchange_mtu()&lt;/em&gt; function:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_BT_GATT_CLIENT=y&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Please let me know if this solves your issue or not.&lt;/p&gt;
&lt;p&gt;-Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373793?ContentTypeID=1</link><pubDate>Wed, 22 Jun 2022 21:24:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3e357a9e-07c8-45a4-a166-2c0157ef542f</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;One other point I should mention. When I use&amp;nbsp;a different&amp;nbsp;peripheral device that uses a&amp;nbsp;competitor chip / BLE stack with the same profile and services, I have no issue with the larger MTU size exchange occuring immediately upon completing the connection.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373791?ContentTypeID=1</link><pubDate>Wed, 22 Jun 2022 21:18:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ae777adb-1707-4393-bfbd-cd7dc42fdd09</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Hi Einar,&lt;/p&gt;
&lt;p&gt;Sorry about my previous reply, I am frustrated and running out of time to get this one last part of the BLE design working. Here is what I have done today which will hopefully help to identify the issue.&lt;/p&gt;
&lt;p&gt;First thing I tried was using Wireshark as you suggested. However I have very little experience with this software and was not able to get it to follow the BLE communications past the advertisements. Therefore I put that aside for the moment. Note that the central device I have been using for testing is an Android 6 Pixel phone with&amp;nbsp;either our Custom App or the Nordic nRF Connect App.&lt;/p&gt;
&lt;p&gt;Secondly I tried working with the standard Zephyr Peripheral Sample application on the NRF52DK_NRF52832 development kit board. I only made some slight tweaks to ensure I could see all the printk statements on the virtual port and ensure the larger MTU transfer was supported in the configuration file. When I run this app, I also see that the maximum MTU size specified following a connection to the Nordic phone app is only 23 bytes. Here is the comm port output:&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;*** Booting Zephyr OS build v2.7.99-ncs1-1 ***&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[Bluetooth initialized&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;Advertising successfully started&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;Indicate VND attr 0x2d2b0 (UUID 12345678-1234-5678-1234-56789abcdef1)&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;00:00:17.985,412] &amp;lt;inf&amp;gt; fs_nvs: 6 Sectors of 4096 bytes&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.985,443] &amp;lt;inf&amp;gt; fs_nvs: alloc wra: 0, fb8&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.985,443] &amp;lt;inf&amp;gt; fs_nvs: data wra: 0, 4c&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.985,595] &amp;lt;inf&amp;gt; sdc_hci_driver: SoftDevice Controller build revision:&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt; 0e e7 c5 66 67 18 3c ac b3 d2 cc 81 a3 dc f1 c0 |...fg.&amp;lt;. ........&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt; c0 36 02 22 |.6.&amp;quot;&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.989,501] &amp;lt;inf&amp;gt; bt_hci_core: HW Platform: Nordic Semiconductor (0x0002)&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.989,532] &amp;lt;inf&amp;gt; bt_hci_core: HW Variant: nRF52x (0x0002)&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.989,532] &amp;lt;inf&amp;gt; bt_hci_core: Firmware: Standard Bluetooth controller (0x00) Version 14.50663 Build 1008232294&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.989,959] &amp;lt;inf&amp;gt; bt_hci_core: No ID address. App must call settings_load()&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.992,767] &amp;lt;inf&amp;gt; bt_hci_core: Identity: FC:BC:02:5F:35:04 (random)&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.992,797] &amp;lt;inf&amp;gt; bt_hci_core: HCI: version 5.2 (0x0b) revision 0x12fe, manufacturer 0x0059&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;[00:00:17.992,797] &amp;lt;inf&amp;gt; bt_hci_core: LMP: version 5.2 (0x0b) subver 0x12fe&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;Updated MTU: TX: 23 RX: 23 bytes&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000080;"&gt;&lt;em&gt;&lt;strong&gt;Connected&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Attached is the updated &amp;quot;prj.conf&amp;quot; file I used,&amp;nbsp;that was the file I changed, a longer vendor specific characteristic is already defined in this example. Note that with the default &amp;quot;prj.conf&amp;quot; file I also saw the &amp;quot;updated MTU&amp;quot; size (via the callback) as 23 bytes. (The attached filename was changed because&amp;nbsp;this website wouldn&amp;#39;t allow me to attach the &amp;quot;.conf&amp;quot; file extension directly).&lt;/p&gt;
&lt;p&gt;Please let me know if I am missing something obvious here for the MTU size used to be&amp;nbsp;a larger&amp;nbsp;value.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/8640.prj_5F00_conf.txt"&gt;devzone.nordicsemi.com/.../8640.prj_5F00_conf.txt&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thank you so much for your help on this matter, hopefully this simple example will help us work together to resolve this issue.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373694?ContentTypeID=1</link><pubDate>Wed, 22 Jun 2022 12:42:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:03649402-ff0f-4b62-a941-80628cbaa829</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;I am only trying to help you here, I can&amp;#39;t know what you&amp;#39;ve already read.&lt;/p&gt;
&lt;p&gt;We see several issues similar to yours every week, and most of them are solved when the customer is pointed to the right resources, which is why I wanted to get that out of the way before delving deeper into your issue.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have already looked at your config file, and can&amp;#39;t see something obvious that is missing, so for anyone here to keep&amp;nbsp;searching for a needle in your 1700 line haystack&amp;nbsp;would be neither&amp;nbsp;&lt;em&gt;productive&lt;/em&gt;&amp;nbsp;nor&amp;nbsp;&lt;em&gt;helpful&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I would suggest that you observe the MTU exchange using the&amp;nbsp;&lt;a href="https://www.nordicsemi.com/Products/Development-tools/nRF-Sniffer-for-Bluetooth-LE"&gt;nRF Sniffer&lt;/a&gt;. That could help you get a much clearer view of what is happening, and narrow down where your issue is coming from.&lt;/p&gt;
&lt;p&gt;Also, I assume the config file in your project folder isn&amp;#39;t actually named&amp;nbsp;&lt;em&gt;.config.txt&lt;/em&gt;? I believe the build system would have trouble finding the file if that is the case.&lt;/p&gt;
&lt;p&gt;It would also be interesting to know what type of device you are using for your central unit?&lt;/p&gt;
&lt;p&gt;Meanwhile I will try to put together a small example program sending packets with larger MTU size using a minimal configuration.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373511?ContentTypeID=1</link><pubDate>Tue, 21 Jun 2022 14:55:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f3129490-d7b4-4cdd-a925-18c997b1ce69</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Hello Einar, all you can do is point me to documents that I already read? Can you not get someone to at least look at the configuration file I sent to determine if something is wrong? This has not been very helpful really, I have been struggling with this for days now and have been getting nowhere.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am looking at the values returned directly in the MTU updated callback routine, and that is what I am observing as 23. I am trying now to actually put breakpoints and trace through the BLE stack to figure out why the maximum MTU size is not correct. I will continue to try and troubleshoot this issue, but getting some expert help would be way more productive and helpful.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373365?ContentTypeID=1</link><pubDate>Tue, 21 Jun 2022 07:58:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f65a99fe-7cff-41ca-a9f5-e8bbb914764e</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I would recommend you to read through &lt;a href="https://devzone.nordicsemi.com/guides/nrf-connect-sdk-guides/b/software/posts/building-a-bluetooth-application-on-nrf-connect-sdk-part-3-optimizing-the-connection"&gt;this guide&lt;/a&gt;, particularly part 2 about throughput. You might find some configuration detail you&amp;#39;ve missed.&lt;/p&gt;
&lt;p&gt;In addition to that; how are you observing this MTU exchange? Serial logging, BLE sniffer? Either way you could probably tell from the exchange which of the units specify the limit of 23 bytes, which could help you narrow down where the issue originates.&lt;/p&gt;
&lt;p&gt;And I believe it could make sense that the MTU exchange happens before a connection callback, as the MTU exchange is part of establishing a connection really.&lt;/p&gt;
&lt;p&gt;-Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373335?ContentTypeID=1</link><pubDate>Tue, 21 Jun 2022 03:41:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2f404d54-b5a7-42cc-a37f-82d1569ddde5</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Hi Einarh,&lt;/p&gt;
&lt;p&gt;This problem is really putting a halt to my development, it&amp;#39;s the only remaining BLE issue in our new design. I&amp;#39;m not sure what else I can try, I have compared all of the configurations in my project file to the throughput (and other) examples.&lt;/p&gt;
&lt;p&gt;One observation I had was that it seems like the &amp;quot;mtu exchange&amp;quot; callback is occurring before even the initial connection callback. Perhaps you can reach out to the design guys there to see if they have any possible thoughts or suggestions on why this is not working correctly?&lt;/p&gt;
&lt;p&gt;Thanks so much.&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373303?ContentTypeID=1</link><pubDate>Mon, 20 Jun 2022 15:33:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9e62687f-2a85-4de1-9d12-ca532c3106b6</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Hi Einarh,&lt;/p&gt;
&lt;p&gt;That is the real question I have for you. I have compared my project configuration to other postings regarding using the larger MTU and do not see any issues. The usage of the peripheral device is working fine, except for the smaller MTU size. And I am sure that the central device supports the larger MTU, it works properly with the other version of our peripheral design using a competitor chip and RF stack.&lt;/p&gt;
&lt;p&gt;I will attach my generated &amp;quot;.config&amp;quot; file one more time, can you please look at it or make any other suggestions on what might not be configured correctly for getting the larger MTU exchange to occur?&lt;/p&gt;
&lt;p&gt;Thanks and regards,&lt;/p&gt;
&lt;p&gt;Pam&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/5226.config.txt"&gt;devzone.nordicsemi.com/.../5226.config.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373145?ContentTypeID=1</link><pubDate>Mon, 20 Jun 2022 07:26:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7f6cdc36-0cc7-4560-86df-bbf55b9c352a</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know of any changes that directly impact this in 2.0.0, but doesn&amp;#39;t hurt to update.&lt;/p&gt;
&lt;p&gt;The MTU exchange only occurs once as the connection is established, so if you&amp;#39;re seeing one that specifies 23, then either your central unit doesn&amp;#39;t support larger MTU or you haven&amp;#39;t configured your peripheral properly.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373107?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 23:02:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f68b0e17-8d75-473f-9c17-1b7f49ec41a0</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Does the SDK version matter? I am currently using 1.9.1 but will be looking into updating to the latest 2.0.0.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/373098?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 17:35:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b327b954-4e17-477e-aa6d-efa2fe2629eb</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;Hi Einar,&lt;/p&gt;
&lt;p&gt;Yes I looked at that example, plus a couple of others. I even just tried to add a few of the configuration options in the throughput example that I did not have to see if it mattered, but it did not make a difference. Note that there I do get a callback that a MTU exchange occurs, but the size specified is only 23. I don&amp;#39;t know if this is typical and a second update follows with the larger MTU size, but in either case I am not seeing that.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Pam&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/372956?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 08:34:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5e8da191-7e43-49f4-b0cf-0130855858a9</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hello!&lt;/p&gt;
&lt;p&gt;Have you looked at the &lt;a href="http://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/bluetooth/throughput/README.html"&gt;BLE Throughput example&lt;/a&gt;, to see how it&amp;#39;s done there?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/372896?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 00:25:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:34ed5291-8409-460a-9854-3e49ca06128f</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/5488.config.txt"&gt;devzone.nordicsemi.com/.../5488.config.txt&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Had to rename this one to upload it, it&amp;#39;s the &amp;quot;.config&amp;quot; file. Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Update MTU Exchange Procedure Not Occurring</title><link>https://devzone.nordicsemi.com/thread/372895?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 00:23:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7267b267-4885-4033-bf61-e0ae9a21f3a7</guid><dc:creator>Pamela Keiles</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/2146.autoconf.h"&gt;devzone.nordicsemi.com/.../2146.autoconf.h&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>