<?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>[SINGLE SLOT/DFU] FW loader/ble_mcumgr customization</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/127547/single-slot-dfu-fw-loader-ble_mcumgr-customization</link><description>Hi, 
 I am developing with NCS 3.2.3 on the nRF54L15. 
 I need to customize the FW loader located here: github.com/.../ble_mcumgr 
 The customization is related to the BLE device name, which should include the device serial number, in the form: device_name</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 23 Mar 2026 12:38:58 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/127547/single-slot-dfu-fw-loader-ble_mcumgr-customization" /><item><title>RE: [SINGLE SLOT/DFU] FW loader/ble_mcumgr customization</title><link>https://devzone.nordicsemi.com/thread/563864?ContentTypeID=1</link><pubDate>Mon, 23 Mar 2026 12:38:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5164623e-7cd4-4c8b-939a-35ffeea06809</guid><dc:creator>Sarma</dc:creator><description>&lt;p&gt;No I didnt.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Scan data structure is a part of my application code. This way BLE libraries from Zephyr/Nordic are untouched. To understand more, see this exercise:&amp;nbsp;&lt;a id="" href="https://academy.nordicsemi.com/courses/bluetooth-low-energy-fundamentals/lessons/lesson-2-bluetooth-le-advertising/topic/blefund-lesson-2-exercise-1/"&gt;https://academy.nordicsemi.com/courses/bluetooth-low-energy-fundamentals/lessons/lesson-2-bluetooth-le-advertising/topic/blefund-lesson-2-exercise-1/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or&amp;nbsp;&lt;br /&gt;&lt;a id="" href="https://academy.nordicsemi.com/courses/bluetooth-low-energy-fundamentals/lessons/lesson-2-bluetooth-le-advertising/"&gt;https://academy.nordicsemi.com/courses/bluetooth-low-energy-fundamentals/lessons/lesson-2-bluetooth-le-advertising/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;Sarma&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [SINGLE SLOT/DFU] FW loader/ble_mcumgr customization</title><link>https://devzone.nordicsemi.com/thread/563861?ContentTypeID=1</link><pubDate>Mon, 23 Mar 2026 12:32:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b4b6ef30-cfcc-4813-91d6-8d9ba84d9c91</guid><dc:creator>longo92</dc:creator><description>&lt;p&gt;Ok, but do you direclly modify the sdk source code file:&amp;nbsp;&lt;a id="" href="https://github.com/nrfconnect/sdk-zephyr/blob/ncs-v3.2.3/samples/subsys/mgmt/mcumgr/smp_svr/src/bluetooth.c"&gt;https://github.com/nrfconnect/sdk-zephyr/blob/ncs-v3.2.3/samples/subsys/mgmt/mcumgr/smp_svr/src/bluetooth.c&lt;/a&gt;&amp;nbsp;?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [SINGLE SLOT/DFU] FW loader/ble_mcumgr customization</title><link>https://devzone.nordicsemi.com/thread/563859?ContentTypeID=1</link><pubDate>Mon, 23 Mar 2026 12:26:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c228b999-ba49-459e-96ff-7dc06c0fdb6f</guid><dc:creator>Sarma</dc:creator><description>&lt;p&gt;I am doing this in my application a little differently:&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Define the scan data parameter:&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;static&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;const&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;struct&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;bt_data&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;mScanData&lt;/span&gt;&lt;span&gt;[]&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span&gt;BT_DATA&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;BT_DATA_NAME_COMPLETE&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;sDeviceName&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;DEVICE_NAME_LEN&lt;/span&gt;&lt;span&gt;),&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;};&lt;br /&gt;&lt;br /&gt;Modify the &amp;quot;sDeviceName&amp;quot; as per your application requirement after BLE_Init().&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;When you&amp;nbsp;start advertisement, the name in &amp;quot;sDeviceName&amp;quot; is taken.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>