<?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>sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/71105/sending-ascii-bytes-through-mesh-between-a-nrf52840-development-kit-and-two-dongle</link><description>Hello everyone, 
 I am new and tried some example on the nrf52840 devkit and dongle, including light switch example. 
 I am now going to send some ASCII bytes through the mesh between three boards and receive a verification message in the client side</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 20 May 2021 11:43:37 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/71105/sending-ascii-bytes-through-mesh-between-a-nrf52840-development-kit-and-two-dongle" /><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/310719?ContentTypeID=1</link><pubDate>Thu, 20 May 2021 11:43:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d46b6d53-5286-42ec-a238-2f3000434a48</guid><dc:creator>Mttrinh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;1. Have you made any changes to the project? You are using the nRF Mesh&amp;nbsp;&lt;span&gt;to provision the devices, bind the models to appkey and set the publish address, correct? I don&amp;#39;t see this on my side.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;2. Any packet with size larger than 11 bytes (including header) will be split into segmented messages automatically. But the maximum possible segmented payload size is 380 so it will fail if you have a higher payload. Note that&amp;nbsp;Mesh is not optimal for sending/streaming a lot of data.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;3. Yes, you can send data to a specific node by publishing to their unicast address. You can do this in the nRF Mesh app.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/310007?ContentTypeID=1</link><pubDate>Tue, 18 May 2021 05:20:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8dfd020e-f123-4403-90db-e88cc0080efa</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you again for the modification of the codes which workes well.&lt;/p&gt;
&lt;p&gt;1) I wonder that why the handle_send_status function is rune twice in the server-side as you see in the log:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;t: 0&amp;gt;, main.c, 370, ----- BLE Mesh Light Switch Server Demo -----&lt;br /&gt;&amp;lt;t: 12177&amp;gt;, main.c, 326, Initializing and adding models&lt;br /&gt;&amp;lt;t: 12180&amp;gt;, main.c, 180, App OnOff Model Handle: 2&lt;br /&gt;&amp;lt;t: 12183&amp;gt;, main.c, 185, App DTT Model Handle: 3&lt;br /&gt;&amp;lt;t: 12187&amp;gt;, main.c, 191, App Scene Model Handle: 5&lt;br /&gt;&amp;lt;t: 12244&amp;gt;, main.c, 304, Node Address: 0x0002 &lt;br /&gt;&amp;lt;t: 12247&amp;gt;, mesh_app_utils.c, 66, Device UUID (raw): 137FF47B11294702B381A62F60654E45&lt;br /&gt;&amp;lt;t: 12250&amp;gt;, mesh_app_utils.c, 67, Device UUID : 137FF47B-1129-4702-B381-A62F60654E45&lt;br /&gt;&amp;lt;t: 12279&amp;gt;, main.c, 420, &lt;br /&gt; -------------------------------------------------------------------------------&lt;br /&gt; Button/RTT 1) LED state will toggle and inform clients about the state change.&lt;br /&gt; Button/RTT 4) Clear all the states to reset the node.&lt;br /&gt; -------------------------------------------------------------------------------&lt;br /&gt;&amp;lt;t: 12745&amp;gt;, app_onoff.c, 154, msg: SET: 0&lt;br /&gt;&amp;lt;t: 169757&amp;gt;, generic_onoff_server.c, 274, ASCII Message: Hello&lt;br /&gt;&amp;lt;t: 169760&amp;gt;, generic_onoff_server.c, 280, length of buffer_RX: 5&lt;br /&gt;&amp;lt;t: 169770&amp;gt;, generic_onoff_server.c, 325, Status : 0 &lt;br /&gt;&amp;lt;t: 172383&amp;gt;, generic_onoff_server.c, 274, ASCII Message: Hello&lt;br /&gt;&amp;lt;t: 172385&amp;gt;, generic_onoff_server.c, 280, length of buffer_RX: 5&lt;br /&gt;&amp;lt;t: 172395&amp;gt;, generic_onoff_server.c, 325, Status : 0&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;2) To send large data through the mesh, I used &amp;quot;.force_segmented = true&amp;quot; option in the definition of my message, allowing me to send 360-byte data. Is this way correct?&lt;br /&gt;Is there any solution to send more bytes?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;3) Is it possible to send the data to a specific node? Actually, how can I send my message to a specific device, and how can I set the address inside the codes?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Br,&lt;br /&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/309803?ContentTypeID=1</link><pubDate>Fri, 14 May 2021 13:42:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d480f6ad-18f3-4cb0-b9ec-c4228cc0bee1</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you very much.&lt;/p&gt;
&lt;p&gt;I will try that.&lt;/p&gt;
&lt;p&gt;Br,&lt;/p&gt;
&lt;p&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/309654?ContentTypeID=1</link><pubDate>Thu, 13 May 2021 10:44:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ffbc77a3-4c96-4ba6-80df-e8ab4249d820</guid><dc:creator>Mttrinh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have modified the light switch example in our latest Mesh SDK v5.0.0. You can search for &amp;quot;modified&amp;quot; to see what I have modified on the client and server.&lt;/p&gt;
&lt;p&gt;I used the &lt;a href="https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Mesh/GetStarted"&gt;nRF Mesh app&lt;/a&gt;&amp;nbsp;to provision the devices, bind the models to appkey and set the publish address.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Push button 1 on the client board and you will see that a &amp;quot;Hello&amp;quot; message will be received on the server.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/nrf5_5F00_SDK_5F00_for_5F00_Mesh_5F00_v5.0.0_5F00_src_5F00_.rar"&gt;devzone.nordicsemi.com/.../nrf5_5F00_SDK_5F00_for_5F00_Mesh_5F00_v5.0.0_5F00_src_5F00_.rar&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/308400?ContentTypeID=1</link><pubDate>Wed, 05 May 2021 15:46:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cebb3a8f-b03e-428e-8635-d0453a90bca3</guid><dc:creator>Mttrinh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Regarding the error 7, you probably haven&amp;#39;t bound m&lt;span&gt;odel to appkey or publish address haven&amp;#39;t been set.&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;[quote user="Sama"]Are you sure there is no need to change other codes, as I see in this &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/46092/send-string-in-a-mesh-with-nrf52dk/"&gt;case&lt;/a&gt; that the&amp;nbsp;&lt;span&gt;Generic OnOff and a few lines have been modified?&lt;/span&gt;[/quote]&lt;/div&gt;
&lt;p&gt;I don&amp;#39;t think you have to make the changes that are being made on the client in that thread, but you need make changes on the server side though.&lt;/p&gt;
&lt;p&gt;I will try setting up the example with the latest SDK version on my side. It might take some time, I will update you as soon as possible.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/308265?ContentTypeID=1</link><pubDate>Wed, 05 May 2021 05:04:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:11710a5f-8adc-487f-88ec-2da2a63d34b9</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Could you please help me to solve my problem?&lt;/p&gt;
&lt;p&gt;I look forward to hearing from you.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Br,&lt;/p&gt;
&lt;p&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/307736?ContentTypeID=1</link><pubDate>Sat, 01 May 2021 06:19:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8f9fbef9-8708-4707-86bd-4a38f3e71042</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for your reply.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I tested that again, and it seems that the error is related to the invalid status in&amp;nbsp;ERROR_CHECK(status);&lt;/p&gt;
&lt;p&gt;Here is the log and line that returned the error.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;lt;t: 0&amp;gt;, main.c, 431, ----- BLE Mesh Light Switch Client Demo -----&lt;br /&gt;&amp;lt;t: 12585&amp;gt;, main.c, 390, Initializing and adding models&lt;br /&gt;&amp;lt;t: 17486&amp;gt;, mesh_app_utils.c, 66, Device UUID (raw): 137FF47B11294702B381A62F60654E45&lt;br /&gt;&amp;lt;t: 17489&amp;gt;, mesh_app_utils.c, 67, Device UUID : 137FF47B-1129-4702-B381-A62F60654E45&lt;br /&gt;&amp;lt;t: 17506&amp;gt;, main.c, 478, &lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt; Button/RTT 1) Send a message to the odd group (address: 0xC003) to turn on LED 1.&lt;br /&gt; Button/RTT 2) Send a message to the odd group (address: 0xC003) to turn off LED 1.&lt;br /&gt; Button/RTT 3) Send a message to the even group (address: 0xC002) to turn on LED 1.&lt;br /&gt; Button/RTT 4) Send a message to the even group (address: 0xC002) to turn off LED 1.&lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt;&amp;lt;t: 150901&amp;gt;, main.c, 297, Button 1 pressed&lt;br /&gt;&amp;lt;t: 150903&amp;gt;, main.c, 139, ----- send_message -----&lt;br /&gt;Sending to group address 0xCAFE&lt;br /&gt;&amp;lt;t: 150914&amp;gt;, main.c, 151, Status : 7 &lt;br /&gt;&amp;lt;t: 150916&amp;gt;, app_error_weak.c, 115, Mesh error 7 at 0x000279E5 (D:\Behine Niroo\Nordic\NRF Mesh\nrf5_SDK_for_Mesh_v5.0.0_src\examples\light_switch - Copy (3)\client\src\main.c:161)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619842118168v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Because the status returned by the &amp;quot;access_model_publish&amp;quot; function, I printed out the parameters before that. As you can see&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;t: 0&amp;gt;, main.c, 435, ----- BLE Mesh Light Switch Client Demo -----&lt;br /&gt;&amp;lt;t: 12535&amp;gt;, main.c, 394, Initializing and adding models&lt;br /&gt;&amp;lt;t: 17432&amp;gt;, mesh_app_utils.c, 66, Device UUID (raw): 137FF47B11294702B381A62F60654E45&lt;br /&gt;&amp;lt;t: 17435&amp;gt;, mesh_app_utils.c, 67, Device UUID : 137FF47B-1129-4702-B381-A62F60654E45&lt;br /&gt;&amp;lt;t: 17449&amp;gt;, main.c, 482, &lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt; Button/RTT 1) Send a message to the odd group (address: 0xC003) to turn on LED 1.&lt;br /&gt; Button/RTT 2) Send a message to the odd group (address: 0xC003) to turn off LED 1.&lt;br /&gt; Button/RTT 3) Send a message to the even group (address: 0xC002) to turn on LED 1.&lt;br /&gt; Button/RTT 4) Send a message to the even group (address: 0xC002) to turn off LED 1.&lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt;&amp;lt;t: 111205&amp;gt;, main.c, 301, Button 1 pressed&lt;br /&gt;&amp;lt;t: 111208&amp;gt;, main.c, 139, ----- send_message -----&lt;br /&gt;Sending to group address 0xCAFE&lt;br /&gt;&amp;lt;t: 111219&amp;gt;, main.c, 150, msg.opcode.opcode : 0x00C1 &lt;br /&gt;&amp;lt;t: 111221&amp;gt;, main.c, 151, msg.p_buffer : Hello &lt;br /&gt;&amp;lt;t: 111223&amp;gt;, main.c, 152, msg.length : 5 &lt;br /&gt;&amp;lt;t: 111225&amp;gt;, main.c, 154, Status : 7 &lt;br /&gt;&amp;lt;t: 111227&amp;gt;, app_error_weak.c, 115, Mesh error 7 at 0x00027A1D (D:\Behine Niroo\Nordic\NRF Mesh\nrf5_SDK_for_Mesh_v5.0.0_src\examples\light_switch - Copy (3)\client\src\main.c:165)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619845522251v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I also followed the&amp;nbsp;&lt;span&gt;&amp;nbsp;&amp;quot;access_model_publish&amp;quot; function until &amp;quot;packet_alloc_and_tx&amp;quot; function and tried to print out its parameters:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;lt;t: 0&amp;gt;, main.c, 467, ----- BLE Mesh Light Switch Client Demo -----&lt;br /&gt;&amp;lt;t: 12356&amp;gt;, main.c, 426, Initializing and adding models&lt;br /&gt;&amp;lt;t: 12406&amp;gt;, main.c, 230, Node Address: 0x0002 &lt;br /&gt;&amp;lt;t: 12409&amp;gt;, mesh_app_utils.c, 66, Device UUID (raw): 137FF47B11294702B381A62F60654E45&lt;br /&gt;&amp;lt;t: 12412&amp;gt;, mesh_app_utils.c, 67, Device UUID : 137FF47B-1129-4702-B381-A62F60654E45&lt;br /&gt;&amp;lt;t: 12436&amp;gt;, main.c, 514, &lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt; Button/RTT 1) Send a message to the odd group (address: 0xC003) to turn on LED 1.&lt;br /&gt; Button/RTT 2) Send a message to the odd group (address: 0xC003) to turn off LED 1.&lt;br /&gt; Button/RTT 3) Send a message to the even group (address: 0xC002) to turn on LED 1.&lt;br /&gt; Button/RTT 4) Send a message to the even group (address: 0xC002) to turn off LED 1.&lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt;&amp;lt;t: 178686&amp;gt;, main.c, 333, Button 1 pressed&lt;br /&gt;&amp;lt;t: 178688&amp;gt;, main.c, 139, ----- send_message -----&lt;br /&gt;Sending to group address 0xCAFE&lt;br /&gt;&amp;lt;t: 178699&amp;gt;, main.c, 150, msg.opcode.opcode : 0x00C1 &lt;br /&gt;&amp;lt;t: 178702&amp;gt;, main.c, 151, msg.p_buffer : Hello &lt;br /&gt;&amp;lt;t: 178704&amp;gt;, main.c, 152, msg.length : 5 &lt;br /&gt;&amp;lt;t: 178706&amp;gt;, access.c, 439, handle : 0 &lt;br /&gt;&amp;lt;t: 178708&amp;gt;, access.c, 440, pp_access_payload : 537128688 &lt;br /&gt;&amp;lt;t: 178711&amp;gt;, access.c, 441, p_access_payload_len : 537128694 &lt;br /&gt;&amp;lt;t: 178714&amp;gt;, access.c, 442, TX: Msg Hello &lt;br /&gt;&amp;lt;t: 178716&amp;gt;, main.c, 154, Status : 7 &lt;br /&gt;&amp;lt;t: 178718&amp;gt;, app_error_weak.c, 115, Mesh error 7 at 0x00027A25 (D:\Behine Niroo\Nordic\NRF Mesh\nrf5_SDK_for_Mesh_v5.0.0_src\examples\light_switch - Copy (3)\client\src\main.c:165)&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619860143636v1.png" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I am not sure about the correctness of my method to print out and I could not print the &amp;quot;p_rx_message&amp;quot; variable.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Any idea?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Are you sure there is no need to change other codes, as I see in this &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/46092/send-string-in-a-mesh-with-nrf52dk/"&gt;case&lt;/a&gt; that the&amp;nbsp;&lt;span&gt;Generic OnOff and a few lines have been modified?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Could you please run this example on your side? Because I have been struggling a long time to run that.&lt;/p&gt;
&lt;p&gt;It seems that after 3 years, it is needed an update, isn&amp;#39;t it?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Br,&lt;/p&gt;
&lt;p&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/307279?ContentTypeID=1</link><pubDate>Wed, 28 Apr 2021 13:38:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f154618e-399d-486b-90b9-fcf11415596e</guid><dc:creator>Mttrinh</dc:creator><description>[quote user="Sama"]&lt;p&gt;or should I define another variable &amp;quot;m_client&amp;quot; as&lt;/p&gt;
&lt;p&gt;static simple_on_off_client_t m_client[CLIENT_MODEL_INSTANCE_COUNT];&lt;/p&gt;
&lt;p&gt;and use this in my functions?&lt;/p&gt;[/quote]
&lt;p&gt;Yes, you should define another variable for m_client and use this in your functions. As this is for simpleOnOff while the other one is for GenericOnOff.&lt;/p&gt;
&lt;p&gt;The error that you get, Mesh error 7, corresponds to Invalid Parameter. In main on line 167, can you see which function is returning this error? Have you put in the correct parameter?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/307123?ContentTypeID=1</link><pubDate>Wed, 28 Apr 2021 05:17:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:88aa2d4b-9ba3-4b3f-9cc5-9380f7e77b4a</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Update:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;When I provision and configure the devices, there are not simple messages or simple OnOff models.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619586766117v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619586784185v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619586797269v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;any idea?&lt;/p&gt;
&lt;p&gt;I look forward to hearing from you.&lt;/p&gt;
&lt;p&gt;Br,&lt;/p&gt;
&lt;p&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/307013?ContentTypeID=1</link><pubDate>Tue, 27 Apr 2021 12:13:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:90b6d450-6e85-48a0-8da4-15cde7d80035</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for your reply.&lt;/p&gt;
&lt;p&gt;Here it is two pictures of my debug:&lt;/p&gt;
&lt;p&gt;In this case, I add my function in the case of 1.3 buttons,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619525311114v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and in this case,&amp;nbsp;&lt;span&gt;I add my function in the case of 2.4 buttons,&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1619525101236v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;and this is the log:&lt;/p&gt;
&lt;p&gt;&amp;lt;t: 0&amp;gt;, main.c, 439, ----- BLE Mesh Light Switch Client Demo -----&lt;br /&gt;&amp;lt;t: 12144&amp;gt;, main.c, 398, Initializing and adding models&lt;br /&gt;&amp;lt;t: 17040&amp;gt;, mesh_app_utils.c, 66, Device UUID (raw): 137FF47B11294702B381A62F60654E45&lt;br /&gt;&amp;lt;t: 17043&amp;gt;, mesh_app_utils.c, 67, Device UUID : 137FF47B-1129-4702-B381-A62F60654E45&lt;br /&gt;&amp;lt;t: 17056&amp;gt;, main.c, 486, &lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt; Button/RTT 1) Send a message to the odd group (address: 0xC003) to turn on LED 1.&lt;br /&gt; Button/RTT 2) Send a message to the odd group (address: 0xC003) to turn off LED 1.&lt;br /&gt; Button/RTT 3) Send a message to the even group (address: 0xC002) to turn on LED 1.&lt;br /&gt; Button/RTT 4) Send a message to the even group (address: 0xC002) to turn off LED 1.&lt;br /&gt; ------------------------------------------------------------------------------------&lt;br /&gt;&amp;lt;t: 97625&amp;gt;, main.c, 304, Button 1 pressed&lt;br /&gt;&amp;lt;t: 97627&amp;gt;, main.c, 329, Sending msg: ONOFF SET 1&lt;br /&gt;&amp;lt;t: 97630&amp;gt;, main.c, 374, Publication not configured for client 1&lt;br /&gt;&amp;lt;t: 350157&amp;gt;, main.c, 304, Button 1 pressed&lt;br /&gt;&amp;lt;t: 350159&amp;gt;, main.c, 329, Sending msg: ONOFF SET 1&lt;br /&gt;&amp;lt;t: 350162&amp;gt;, main.c, 374, Publication not configured for client 1&lt;br /&gt;&amp;lt;t: 398193&amp;gt;, main.c, 304, Button 2 pressed&lt;br /&gt;&amp;lt;t: 398195&amp;gt;, main.c, 145, ----- send_message -----&lt;br /&gt;Sending to group address 0xCAFE&lt;br /&gt;&amp;lt;t: 398206&amp;gt;, main.c, 157, Status : 7 &lt;br /&gt;&amp;lt;t: 398208&amp;gt;, app_error_weak.c, 115, Mesh error 7 at 0x000279EF (D:\Behine Niroo\Nordic\NRF Mesh\nrf5_SDK_for_Mesh_v5.0.0_src\examples\light_switch - Copy\client\src\main.c:167)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I wonder that the address_set function in server and client are different or not. Because in this &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/29836/send-and-receive-a-string-via-access-layer"&gt;case&lt;/a&gt;,&amp;nbsp;it seems that they are alike.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Furthermore, I am confused about the &amp;quot;m_clients&amp;quot; variable. This variable is defined in the Nordic&amp;#39;s codes as:&lt;/p&gt;
&lt;p&gt;static generic_onoff_client_t m_clients[CLIENT_MODEL_INSTANCE_COUNT];&lt;/p&gt;
&lt;p&gt;Should I use this in my functions, e.g&lt;/p&gt;
&lt;p&gt;ERROR_CHECK(access_model_publish_address_set(m_clients[0].model_handle, m_central_handle));&lt;br /&gt;status= access_model_publish(m_clients[0].model_handle, &amp;amp;msg);&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;or should I define another variable &amp;quot;m_client&amp;quot; as&lt;/p&gt;
&lt;p&gt;static simple_on_off_client_t m_client[CLIENT_MODEL_INSTANCE_COUNT];&lt;/p&gt;
&lt;p&gt;and use this in my functions?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Please let me know as soon as possible.&lt;/p&gt;
&lt;p&gt;I look forward to hearing from you.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Br,&lt;/p&gt;
&lt;p&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/306864?ContentTypeID=1</link><pubDate>Mon, 26 Apr 2021 15:14:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b95913e-74df-4753-bed4-ca754b71f8a2</guid><dc:creator>Mttrinh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You don&amp;#39;t need to make a new ticket for this, we can continue this here. I&amp;#39;m not sure what the issue is though&lt;/p&gt;
[quote user="Sama"]&lt;p&gt;&lt;span&gt;I added the send_my_message&amp;nbsp;function in the button handler but it got stuck.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;[/quote]
&lt;p&gt;&amp;nbsp;What do you mean by stuck? Do you get any errors? Any log you can share?&lt;/p&gt;
[quote user="Sama"] Due to existing the generic_onoff model in this example, may it cause a conflict with the simple_onoff model?[/quote]
&lt;p&gt;I don&amp;#39;t think this will casue any problems. You can add multiple models in the same example.&lt;/p&gt;
[quote user="Sama"]In the&amp;nbsp;access_model_publish_address_set function we assign an address for our model, right? how can I found if another model signed to this address or not? and is there any limitation to add models?&amp;nbsp;[/quote]
&lt;p&gt;Yes, that function is for adding a publish address to a model. You can have multiple models sending to the same address.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/306655?ContentTypeID=1</link><pubDate>Sun, 25 Apr 2021 15:11:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1563e895-1b1d-432c-bb02-80fdfae8de4a</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is there any solution?&lt;/p&gt;
&lt;p&gt;Should I creat a new ticket?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/305501?ContentTypeID=1</link><pubDate>Mon, 19 Apr 2021 11:30:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ad13b21d-197a-4119-857f-8e3576f838c5</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Sorry for my late reply. I have been working on another part of the project.&lt;/p&gt;
&lt;p&gt;Now, I added these lines on the client-side:&lt;/p&gt;
&lt;p&gt;#include &amp;quot;simple_message_common.h&amp;quot;&lt;br /&gt;#include &amp;quot;simple_on_off_client.h&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;static simple_on_off_client_t m_client;&lt;br /&gt;static dsm_handle_t m_central_handle;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;void address_set(uint16_t addr)&lt;br /&gt;{&lt;br /&gt; ERROR_CHECK(dsm_address_publish_add(addr, &amp;amp;m_central_handle));&lt;br /&gt; ERROR_CHECK(access_model_publish_address_set(m_client[0].model_handle, m_central_handle));&lt;br /&gt; }&lt;/p&gt;
&lt;p&gt;void send_my_message (void) &lt;br /&gt;{&lt;br /&gt; uint32_t status=0;&lt;br /&gt; uint8_t buffer[5]=&amp;quot;Hello&amp;quot;;&lt;br /&gt; uint8_t length;&lt;br /&gt; uint16_t address;&lt;br /&gt; access_message_tx_t msg;&lt;br /&gt; length= sizeof(buffer);&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;----- send_message -----\n&amp;quot;);&lt;br /&gt; if (length)&lt;br /&gt; { &lt;br /&gt; msg.opcode.opcode = simple_message_OPCODE_SEND;&lt;br /&gt; msg.opcode.company_id = 0x0059; // Nordic&amp;#39;s company ID&lt;br /&gt; &lt;br /&gt; msg.p_buffer = (const uint8_t *) &amp;amp;buffer[0];&lt;br /&gt; msg.length =length;&lt;br /&gt; address = 0xCAFE;&lt;br /&gt; address_set(address);&lt;br /&gt; SEGGER_RTT_printf(0,&amp;quot;Sending to group address 0x%04x\n&amp;quot;, address);&lt;br /&gt; status= access_model_publish(m_client[0].model_handle, &amp;amp;msg);&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;Status : %u \n&amp;quot;, status);&lt;/p&gt;
&lt;p&gt;if (status == NRF_ERROR_INVALID_STATE ||&lt;br /&gt; status == NRF_ERROR_BUSY||status == NRF_ERROR_NO_MEM)&lt;br /&gt; {&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;Cannot send. Device is busy.\n&amp;quot;);&lt;br /&gt; hal_led_blink_ms(LEDS_MASK, 50, 4);&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; ERROR_CHECK(status);&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and also added the c files of simple_message_client and simple_onoff_client and their paths to the user include directories.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and for server-side:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;#include &amp;quot;simple_message_common.h&amp;quot;&lt;br /&gt;#include &amp;quot;simple_on_off_server.h&amp;quot;&lt;/p&gt;
&lt;p&gt;static simple_on_off_server_t m_server;&lt;br /&gt;static dsm_handle_t m_central_handle;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;void address_set(uint16_t addr)&lt;br /&gt;{&lt;br /&gt; ERROR_CHECK(dsm_address_publish_add(addr, &amp;amp;m_central_handle));&lt;br /&gt; ERROR_CHECK(access_model_publish_address_set(m_server.model_handle, m_central_handle));&lt;br /&gt; }&lt;/p&gt;
&lt;p&gt;void send_my_message (void) &lt;br /&gt;{&lt;br /&gt; uint32_t status=0;&lt;br /&gt; uint8_t buffer[5]=&amp;quot;Hello&amp;quot;;&lt;br /&gt; uint8_t length;&lt;br /&gt; uint16_t address;&lt;br /&gt; access_message_tx_t msg;&lt;br /&gt; length= sizeof(buffer);&lt;br /&gt; if (length)&lt;br /&gt; { &lt;br /&gt; msg.opcode.opcode = simple_message_OPCODE_SEND;&lt;br /&gt; msg.opcode.company_id = 0x0059; // Nordic&amp;#39;s company ID&lt;br /&gt; &lt;br /&gt; msg.p_buffer = (const uint8_t *) &amp;amp;buffer[0];&lt;br /&gt; msg.length =length;&lt;br /&gt; address = 0xCAFE;&lt;br /&gt; address_set(address);&lt;br /&gt; SEGGER_RTT_printf(0,&amp;quot;Sending to group address 0x%04x\n&amp;quot;, address);&lt;br /&gt; status= access_model_publish(m_server.model_handle, &amp;amp;msg);&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;Status : %u \n&amp;quot;, status);&lt;/p&gt;
&lt;p&gt;if (status == NRF_ERROR_INVALID_STATE ||&lt;br /&gt; status == NRF_ERROR_BUSY||status == NRF_ERROR_NO_MEM)&lt;br /&gt; {&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;Cannot send. Device is busy.\n&amp;quot;);&lt;br /&gt; hal_led_blink_ms(LEDS_MASK, 50, 4);&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; ERROR_CHECK(status);&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and also&amp;nbsp;&lt;span&gt;added the c files of simple_message_server and simple_&lt;/span&gt;&lt;span&gt;onoff&lt;/span&gt;&lt;span&gt;_server and their paths to the user include directories.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I want to send my message by pressing a button and stop that with another button.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I added the send_my_message&amp;nbsp;function in the button handler but it got stuck.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;So I have&amp;nbsp;some questions:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;1. Where should I add my function? Is needed any pre-requirement function?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;2. Due to existing the generic_onoff model in this example, may it cause a conflict with the simple_onoff model?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;3. In the&amp;nbsp;access_model_publish_address_set function we assign an address for our model, right? how can I found if another model signed to this address or not? and is there any limitation to add models?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Could you please help me?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;Thank you in advance.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Br,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Sama&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: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/294932?ContentTypeID=1</link><pubDate>Wed, 17 Feb 2021 16:09:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:db20e1e2-0818-4e46-bb4f-40d636835f26</guid><dc:creator>Mttrinh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Have you had any progress with this?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You should put the send_my_message() function outside the button_event_handler(). And the&amp;nbsp;void&amp;nbsp;&lt;span&gt;address_set(uint16_t addr) can be added to main.c.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Additional you should add these&amp;nbsp;static variables and include as well in your main.c:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;quot;simple_message_common.h&amp;quot;
#include &amp;quot;simple_on_off_server.h&amp;quot;

static simple_on_off_server_t m_server;

static dsm_handle_t m_central_handle;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Thanks for your patience.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/292682?ContentTypeID=1</link><pubDate>Wed, 03 Feb 2021 13:12:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9c45abb2-09f3-43d5-ae8d-6c6dfae16683</guid><dc:creator>Sama</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;What I did is:&lt;/p&gt;
&lt;p&gt;copy the simple message model inside the vendor folder where there is the simple on-off model.&lt;/p&gt;
&lt;p&gt;add a new folder in the project file in the switch light client SES and add simple on-off and simple message models.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1612357700842v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;add&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code&gt;../../../../../../models\vendor\simple_message\include and&amp;nbsp;&lt;span&gt;../../../../../../models\vendor\simple_on_off\include&lt;/span&gt;&lt;/code&gt;&lt;span&gt;&amp;nbsp;to the&amp;nbsp;&lt;/span&gt;&lt;code&gt;User Include Directories&lt;/code&gt;&lt;span&gt;&amp;nbsp;field.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;add this code in the main.c in line 248&amp;nbsp;(switch(button_number)&lt;br /&gt; {&lt;br /&gt; case 1:&lt;br /&gt; case 3:&lt;br /&gt; set_params.on_off = APP_STATE_ON;)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;void send_my_message (void) &lt;br /&gt;{&lt;br /&gt; uint32_t status=0;&lt;br /&gt; uint8_t buffer[5]=&amp;quot;Hello&amp;quot;;&lt;br /&gt; uint8_t length;&lt;br /&gt; uint16_t address;&lt;br /&gt; access_message_tx_t msg;&lt;br /&gt; length= sizeof(buffer);&lt;br /&gt; if (length)&lt;br /&gt; { &lt;br /&gt; msg.opcode.opcode = simple_message_OPCODE_SEND;&lt;br /&gt; msg.opcode.company_id = 0x0059; // Nordic&amp;#39;s company ID&lt;br /&gt; &lt;br /&gt; msg.p_buffer = (const uint8_t *) &amp;amp;buffer[0];&lt;br /&gt; msg.length =length;&lt;br /&gt; address = 0xCAFE;&lt;br /&gt; address_set(address);&lt;br /&gt; SEGGER_RTT_printf(0,&amp;quot;Sending to group address 0x%04x\n&amp;quot;, address);&lt;br /&gt; status= access_model_publish(m_clients[3].model_handle, &amp;amp;msg);&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;Status : %u \n&amp;quot;, status);&lt;/p&gt;
&lt;p&gt;if (status == NRF_ERROR_INVALID_STATE ||&lt;br /&gt; status == NRF_ERROR_BUSY||status == NRF_ERROR_NO_MEM)&lt;br /&gt; {&lt;br /&gt; __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;Cannot send. Device is busy.\n&amp;quot;);&lt;br /&gt; hal_led_blink_ms(LEDS_MASK, 50, 4);&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; ERROR_CHECK(status);&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1612357760912v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;After running I get this&lt;/p&gt;
&lt;p&gt;Rebuilding &amp;lsquo;light_switch_client_nrf52840_xxAA_s140_7.2.0&amp;rsquo; from solution &amp;lsquo;light_switch_client_nrf52840_xxAA_s140_7.2.0&amp;rsquo; in configuration &amp;lsquo;Debug&amp;rsquo;&lt;br /&gt; Compiling &amp;lsquo;main.c&amp;rsquo;&lt;br /&gt; &amp;#39;simple_message_OPCODE_SEND&amp;#39; undeclared (first use in this function)&lt;br /&gt; each undeclared identifier is reported only once for each function it appears in&lt;br /&gt; implicit declaration of function &amp;#39;address_set&amp;#39;; did you mean &amp;#39;dsm_address_get&amp;#39;? [-Wimplicit-function-declaration]&lt;br /&gt; implicit declaration of function &amp;#39;SEGGER_RTT_printf&amp;#39; [-Wimplicit-function-declaration]&lt;br /&gt; Compiling &amp;lsquo;mesh_provisionee.c&amp;rsquo;&lt;br /&gt; Compiling &amp;lsquo;rtt_input.c&amp;rsquo;&lt;br /&gt; Compiling &amp;lsquo;simple_hal.c&amp;rsquo;&lt;br /&gt;Build failed&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In addition to this, I do not know where I should add the&amp;nbsp;&lt;span&gt;void address_set(uint16_t addr) which is stated in the mentioned links.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I am a beginner and I confuse when I deal with the names of different functions I do not know where they are and what they did.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you,&lt;/p&gt;
&lt;p&gt;Sama&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: sending ASCII bytes through Mesh between a nrf52840 development kit and two dongle</title><link>https://devzone.nordicsemi.com/thread/292487?ContentTypeID=1</link><pubDate>Tue, 02 Feb 2021 13:22:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:796f2977-1f9f-4124-a40d-b0540d8c5047</guid><dc:creator>Mttrinh</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There have been made a lot of changes and improvements from Mesh SDK v1.0.0 to v5.0.0. Unfortunately, we don&amp;#39;t have any official examples for sending strings over mesh. The links you are referring to is a great starting point and gives you an idea of how you can do this.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When it comes to the error you get, can you get more details? What function gives which errors? What kinda error do you get? Can you provide some debug logs?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>