<?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>54l15 mesh questions</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125916/54l15-mesh-questions</link><description>hi support team, 
 customer is using our 54L15 for mesh lighting project, here are three questions: 
 1. 
 customer needs timer model, i see the &amp;quot;time_cli.c&amp;quot; and &amp;quot;time_svr.c&amp;quot; in NCS sdk :&amp;quot;\v3.1.1\nrf\subsys\bluetooth\mesh&amp;quot;, but there is no sample how</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 15 Dec 2025 13:33:40 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125916/54l15-mesh-questions" /><item><title>RE: 54l15 mesh questions</title><link>https://devzone.nordicsemi.com/thread/556977?ContentTypeID=1</link><pubDate>Mon, 15 Dec 2025 13:33:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b53a695a-1d05-4fc0-b6a3-60853463eb24</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi William,&amp;nbsp;&lt;br /&gt;We are working on that. I don&amp;#39;t know when the documentation will come. I would suggest to create a new ticket with more info&amp;amp;screenshot about the issue with nRF Mesh app so we can take a look.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 54l15 mesh questions</title><link>https://devzone.nordicsemi.com/thread/556749?ContentTypeID=1</link><pubDate>Thu, 11 Dec 2025 02:22:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:953957a2-8f40-41d9-bfb5-a1e3e19e6ded</guid><dc:creator>William.wei</dc:creator><description>&lt;p&gt;Hi Hung Bui，&lt;/p&gt;
&lt;p&gt;Yes,&lt;span&gt;Regarding #3. Customer is dong DFU with&amp;nbsp;nRF Connect Device Manager, and it works well,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;but i was told Nordicers prefer to use Ios Mesh app, but i could not see any document about this. and couldn&amp;#39;t see how to use that app&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;William.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 54l15 mesh questions</title><link>https://devzone.nordicsemi.com/thread/556641?ContentTypeID=1</link><pubDate>Wed, 10 Dec 2025 08:28:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:220c8ccc-5424-44c3-9188-bfdb705e3f08</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Update: Regarding #3. I got an update that it&amp;#39;s possible to do DFU from Mesh app on iOS. Could you give us some more info on the issue ? Any log, screenshot ? Documentation for it is still in progress. But you can try nRF Connect Device Manager as well if nRF Mesh app doesn&amp;#39;t work.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 54l15 mesh questions</title><link>https://devzone.nordicsemi.com/thread/555865?ContentTypeID=1</link><pubDate>Mon, 01 Dec 2025 13:18:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d5efaf57-cd16-4282-a702-2712b287c0d7</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Wiliam,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1. You are right, there is no sample doing Time srv or Time cli. What I found is some test samples but I think they are a good start.&lt;br /&gt;Time server:&amp;nbsp;\nrf\tests\subsys\bluetooth\mesh\time_model&lt;/p&gt;
&lt;p&gt;Time client:&amp;nbsp; \nrf\tests\bluetooth\tester\src\mmdl.c&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2. Correct the customer can have up to 384 bytes in total but 4 bytes is needed for MIC so 380 actual payload max.&amp;nbsp;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;onfig BT_MESH_RX_SEG_MAX
	int &amp;quot;Maximum number of segments in incoming messages&amp;quot;
	default 6 if BT_MESH_BLOB_SRV || BT_MESH_BLOB_CLI || \
		     BT_MESH_RPR_SRV || BT_MESH_RPR_CLI
	default 3
	range 1 32
	depends on BT_MESH_RX_SEG_MSG_COUNT &amp;gt; 0
	help
	  Maximum number of segments supported for incoming messages.
	  This value should typically be fine-tuned based on what
	  models the local node supports, i.e. what&amp;#39;s the largest
	  message payload that the node needs to be able to receive.
	  This value affects memory and call stack consumption, which
	  is why the default is lower than the maximum that the
	  specification would allow (32 segments).

	  The maximum incoming SDU size is 12 times this number (out of
	  which 4 or 8 bytes is used for the Transport Layer MIC). For
	  example, 5 segments means the maximum SDU size is 60 bytes,
	  which leaves 56 bytes for application layer data using a
	  4-byte MIC and 52 bytes using an 8-byte MIC.&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;As far as I know the segmenting is done on the Transport layer so the application doesn&amp;#39;t do anything. It&amp;#39;s transparent to the application.&amp;nbsp;&lt;br /&gt;However, be very careful when transmitting a big packet. It consumes a lot of traffic to send segmented packets. So it has to be considered thoroughly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;3. I assume you are asking about Mesh DFU for the whole network not Mesh DFU one to one.&amp;nbsp;&lt;br /&gt;Have you follow the guide here:&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/bt/bt_mesh/dfu_over_bt_mesh.html"&gt;https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/bt/bt_mesh/dfu_over_bt_mesh.html&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think you can do DFU from the Mesh app, you need to send the image via nRF Connect Device Manager to send the image from the phone to the distributor. The distributor will send the image(s) to the network.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>