<?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>RXTO not generated by Bluetooth LE UART service application. SDK v3.3.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/128270/rxto-not-generated-by-bluetooth-le-uart-service-application-sdk-v3-3-0</link><description>Dear Everyone, We&amp;#39;re using the PAN B611 evaluation board (ENW89861AXKF) which features a PAN B611-1C Bluetooth Low Energy (LE) module which is based on the Nordic Semiconductor nRF54L15 single-chip controller. We have followed the instructions from: https</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 01 Jun 2026 17:44:23 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/128270/rxto-not-generated-by-bluetooth-le-uart-service-application-sdk-v3-3-0" /><item><title>RE: RXTO not generated by Bluetooth LE UART service application. SDK v3.3.0</title><link>https://devzone.nordicsemi.com/thread/567230?ContentTypeID=1</link><pubDate>Mon, 01 Jun 2026 17:44:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6e96793e-91a8-4659-9ec1-82a9f1e20d87</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;I am glad to be of some assistance, Jakub.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RXTO not generated by Bluetooth LE UART service application. SDK v3.3.0</title><link>https://devzone.nordicsemi.com/thread/567189?ContentTypeID=1</link><pubDate>Mon, 01 Jun 2026 09:56:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a66c1855-d499-4d02-86c2-10f841dcf65b</guid><dc:creator>JakubSlota226</dc:creator><description>&lt;p&gt;Hello Suheel,&lt;br /&gt;&lt;br /&gt;Thank you very much for the response! We&amp;#39;ll use the option you suggested.&lt;br /&gt;&lt;br /&gt;Best Regards,&lt;br /&gt;Jakub&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RXTO not generated by Bluetooth LE UART service application. SDK v3.3.0</title><link>https://devzone.nordicsemi.com/thread/567139?ContentTypeID=1</link><pubDate>Fri, 29 May 2026 20:30:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e772e550-d273-482f-8b3b-9a3513da31b9</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Hi Jakub,&lt;/p&gt;
&lt;p&gt;Your diagnosis seems correct. This is a real race in the sample, not in your code. Calling uart_rx_disable() from UART_RX_RDY while still answering UART_RX_BUF_REQUEST with a fresh buffer races the driver&amp;#39;s state machine: the new buffer rescues the receive operation that was about to stop. On older UARTE blocks the timing usually hid this; on the nRF54L15 the ordering is tighter, so it surfaces.&lt;/p&gt;
&lt;p&gt;I would go with the if (disable_req) return; guard in UART_RX_BUF_REQUEST. Place it at the very top, before the k_malloc. Not responding to the buffer request is the documented Zephyr way to end reception: the driver completes the current buffer, fires UART_RX_BUF_RELEASED (your handler already pushes it to the FIFO), then fires UART_RX_DISABLED cleanly. Putting the guard before the allocation avoids leaking a buffer on the stop path.&lt;/p&gt;
&lt;p&gt;Deferring uart_rx_disable() to a work item also works, but it does not fix the root cause. You still need a disable_req guard in UART_RX_RDY, and you add a context switch for no real benefit. The early-return in UART_RX_BUF_REQUEST is the cleaner change.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I will raise this internally , thanks for brining this to light.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>