<?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>Ble mesh code removing version part</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14186/ble-mesh-code-removing-version-part</link><description>Hi all, 
 I am using ble mesh code for synchronizing leds in mesh network. I need mesh part, but itshould not integrated with version. So i can able change state of led, according to my wish. 
Can any one tell me how do simple mesh code without using</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 31 May 2016 12:14:01 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14186/ble-mesh-code-removing-version-part" /><item><title>RE: Ble mesh code removing version part</title><link>https://devzone.nordicsemi.com/thread/54201?ContentTypeID=1</link><pubDate>Tue, 31 May 2016 12:14:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:869a75ee-2ca5-4fa0-996e-7c459b8a1d55</guid><dc:creator>Trond Einar Snekvik</dc:creator><description>&lt;p&gt;The comment I posted on your other question today should allow you to solve both problems.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Ble mesh code removing version part</title><link>https://devzone.nordicsemi.com/thread/54200?ContentTypeID=1</link><pubDate>Tue, 31 May 2016 10:22:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:92fa89c7-e47b-434e-a596-1de6633a5269</guid><dc:creator>Manjunath</dc:creator><description>&lt;p&gt;what you told i agree, but my requirement is to synchronize led in network. If i use this mesh code  it value is updated with version this is not need for me. Because of version i am facing some problems,&lt;/p&gt;
&lt;p&gt;I need only simple write function rbc_mesh_value_set(2, mesh_data, 1), so it should send to at least 3 devices.&lt;/p&gt;
&lt;p&gt;Note: If any new node enter into mesh, it should not update automatically unless until any old nodes send the data.&lt;/p&gt;
&lt;p&gt;for this requirement any sample code like mesh OR is their any possible to change mesh code.&lt;/p&gt;
&lt;p&gt;please tell me how to do this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Ble mesh code removing version part</title><link>https://devzone.nordicsemi.com/thread/54202?ContentTypeID=1</link><pubDate>Tue, 31 May 2016 08:35:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:15d8403e-eaf6-4574-aeb2-8cbd3bcec757</guid><dc:creator>Trond Einar Snekvik</dc:creator><description>&lt;p&gt;We usually solve this problem by assigning a single handle per device, and only let that device push on that handle. This way, there are never any version conflicts, and the handles only really work as source addresses.&lt;/p&gt;
&lt;p&gt;You might still want to keep versioning around. If you remove all versioning, you can run into scenarios where messages are received out of order. If you for instance send a message to turn on a led, then immediately send a message to turn it off again, the &amp;quot;off&amp;quot;-message could catch up with the &amp;quot;on&amp;quot;-message, so that the &amp;quot;off&amp;quot;-message is delivered first, and &amp;quot;on&amp;quot; second. This will leave your LED in on-state, even though you pressed the off button last! By adding versioning, you will ensure that your messages are never delivered out-of-order, and this problem disappears. The downside is that your on-message never finds its way to the LED. This problem will never really go away until you add ack-messages or similar mechanisms to ensure that your messages are delivered before sending the next, as the mesh doesn&amp;#39;t guarantee delivery.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>