<?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>SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/65991/sdk-uart-coexistence-example-problem</link><description>Hello, 
 I am trying to follow the tutorial SDK UART coexistence example , but it seems like the last step cannot be completed. As you can see, that .hex file does not exist in the folder. Do you have any suggestion? 
 
 Thanks.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 19 Oct 2020 11:51:19 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/65991/sdk-uart-coexistence-example-problem" /><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/275596?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 11:51:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9095eca0-2972-4a76-baa4-ce0906900f53</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi Marry,&lt;/p&gt;
[quote user="Marry"]What do you mean by this?[/quote]
&lt;p&gt;BLE and Bluetooth Mesh work differently, so things like how the network is set up (BLE is one-to-one communication, different provisioning, etc.), the services (mesh models vs. GATT Services), and the stacks are different. You can check out&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/44473/difference-between-ble-stack-and-mesh-stack"&gt;this case&lt;/a&gt;&amp;nbsp;which discuss this a bit.&amp;nbsp;&lt;/p&gt;
[quote user="Marry"]Do you think this is a good idea? Do you have other suggestions of what I should take care of?&amp;nbsp;[/quote]
&lt;p&gt;As I stated, it&amp;#39;s a lot of work to do combine BLE and mesh. However, it&amp;#39;s a case of &amp;quot;you shouldn&amp;#39;t do it if you don&amp;#39;t have to&amp;quot; and not &amp;quot;you shouldn&amp;#39;t do it at all&amp;quot;, so it&amp;#39;s possible to do so. It just requires some work and you need to know what you&amp;#39;re doing and be aware that you risk degrading the mesh traffic.&lt;/p&gt;
&lt;p&gt;If you only wanted to turn on/off the light, I would recommend using the mesh light switch example directly, but you can also see if it&amp;#39;s possible to implement what you can do in that example. I recommend you read about mesh models. M&lt;span&gt;odels define the behavior and communication formats of all data that is transmitted across the mesh. There are several different models in the SDK, for instance the&amp;nbsp;generic OnOff model, which is used to set the OnOff value. I don&amp;#39;t know what characteristic you want to implement in the Blinky example, but it could be that you find something to use for it in one of the models. You can read about mesh models&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v4.2.0/md_doc_user_guide_modules_models_main.html"&gt;here&lt;/a&gt;, and you can find the API for mesh models&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v4.2.0/group__MESH__API__GROUP__MODELS.html"&gt;here&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Marte&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/275476?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 05:45:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fc642866-9df8-459b-a0e1-ded66e578884</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hello&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/marte.m"&gt;Marte&lt;/a&gt;!&lt;/p&gt;
[quote userid="92402" url="~/f/nordic-q-a/65991/sdk-uart-coexistence-example-problem/274872#274872"]as they are two different protocols[/quote]
&lt;p&gt;What do you mean by this? &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;
[quote userid="92402" url="~/f/nordic-q-a/65991/sdk-uart-coexistence-example-problem/274872#274872"]unless necessary[/quote]
&lt;p&gt;It is indeed kind of necessary for my use case to use the mesh, because I&amp;#39;d like to have a lot of such relays, to extend the range. And the information would travel without a specific destination from one end to another; instead, when a phone is in nearby, it would receive the notification immediately. (from my understanding, that&amp;#39;s when I would use a mesh topology).&lt;/p&gt;
[quote userid="92402" url="~/f/nordic-q-a/65991/sdk-uart-coexistence-example-problem/274872#274872"] one node that has both BLE and mesh[/quote]
&lt;p&gt;- Yes, that is exactly what I had in mind. And this is why I am trying to add the Blinky part into the Mesh Client part. My approach would be to add a characteristic to the mesh client code, with the same properties as the Blinky example.&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/nordic/short-range-guides/b/bluetooth-low-energy/posts/ble-characteristics-a-beginners-tutorial"&gt;This BLE Characteristics tutorial&lt;/a&gt;&amp;nbsp;gave me this idea.&lt;/p&gt;
&lt;p&gt;Do you think this is a good idea? Do you have other suggestions of what I should take care of?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274872?ContentTypeID=1</link><pubDate>Wed, 14 Oct 2020 11:47:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4fb672e6-3e8f-4f2e-a7d7-6e064112ac5d</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi Marry,&lt;/p&gt;
&lt;p&gt;It&amp;#39;s not recommended to combine BLE and mesh unless necessary, as they are two different protocols, and therefore it&amp;#39;s a lot of work to get them to work together, and you also risk a worse connection on the mesh side. If you were to combine them&amp;nbsp;you would need one node that has both BLE and mesh, and that node would have to switch between the two protocols in order to communicate with both the mesh and&amp;nbsp;BLE devices. If you want to use mesh, you should instead use mesh examples on all devices and then implement the functionality for toggling the light, such as in the Blinky example, yourself.&lt;/p&gt;
&lt;p&gt;However, if using mesh is not important to you, I would recommend you take a look at the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/ble_sdk_app_rscs_relay.html"&gt;BLE Relay&lt;/a&gt;&amp;nbsp;example instead. As stated in the documentation, the example acts as a relay that receives values and passes them on. The example uses a sensor as peripheral and a collector as central, but you should be able to get it to work with BLE blinky.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274718?ContentTypeID=1</link><pubDate>Tue, 13 Oct 2020 15:02:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f19b6a8c-97f3-49ca-9e2b-715978c9832e</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Thanks Ms.&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/marte.m"&gt;Marte Myrvold&lt;/a&gt;! You are indeed helpful!&lt;/p&gt;
&lt;p&gt;As a matter of fact, I will ask one further question, since you seem to understand my questions very well. My goal for some good weeks/months has been to implement the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v15.0.0%2Fble_sdk_app_blinky.html"&gt;Blinky Application&lt;/a&gt;&amp;nbsp;and to &lt;em&gt;extend its range&lt;/em&gt;. After doing some trials, I came to the conclusion that one solution could be the following:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;- On one end: phone with the Blinky Application, receiving notifications from an nRF52840 &lt;em&gt;far-away&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;- On the other end: an nRF52840, sending notifications (via the button push)&lt;/p&gt;
&lt;p&gt;- In between:&amp;nbsp;&lt;a href="https://www.nordicsemi.com/Software-and-tools/Prototyping-platforms/Nordic-Thingy-52"&gt;Nordic Thingy:52&lt;/a&gt;&amp;nbsp;devices, loaded with&amp;nbsp;&lt;a href="https://github.com/NordicPlayground/thingy52-mesh-provisioning-demo"&gt;the mesh example&lt;/a&gt;. Because when they are configured as servers(aka LEDs), they &lt;strong&gt;relay&lt;/strong&gt; the messages, so that&amp;#39;s very convenient, for my purpose of extending the range :)&lt;/p&gt;
&lt;p&gt;Now, my question is the following: how should I integrate these two functionalities? The Blinky for the end-devices and the mesh for the middle devices?&lt;/p&gt;
&lt;p&gt;If I load them separately, then the&amp;nbsp;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://www.nordicsemi.com/Software-and-tools/Prototyping-platforms/Nordic-Thingy-52"&gt;Nordic Thingy:52&lt;/a&gt;&lt;span&gt;&amp;nbsp;devices do not relay the messages. And this is normal, because for the relaying, the group addresses are assigned from the phone first. Whereas&amp;nbsp;for the&amp;nbsp;&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v15.0.0%2Fble_sdk_app_blinky.html"&gt;Blinky Application&lt;/a&gt;, we do not assign any address; the phone just scans for the board and then connects to it.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I hope that I presented my problem as clear&amp;nbsp;as possible.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks a lot and I wish you a great day!&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274671?ContentTypeID=1</link><pubDate>Tue, 13 Oct 2020 13:22:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cbae9838-efba-4ba7-bd34-2e23f4e52283</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Great that you managed to get it to work!&lt;/p&gt;
&lt;p&gt;Good luck with your development, and don&amp;#39;t hesitate to ask if you happen upon any new problems.&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274665?ContentTypeID=1</link><pubDate>Tue, 13 Oct 2020 13:10:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d947d1ab-cf0c-42e7-85b6-5e5181929273</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;UPDATE: I build successfully the project.&lt;/p&gt;
&lt;p&gt;I just restarted SES, the laptop etc. Thanks a lot for your help, I&amp;#39;m looking forward to the next challenge &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274657?ContentTypeID=1</link><pubDate>Tue, 13 Oct 2020 13:01:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:15ce273a-2a67-4f40-9eac-dc9baaf6ca0b</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hello! And thank you very much for the quick reply!&lt;/p&gt;
&lt;p&gt;I tried with SDK16 and I have the same error unfortunately - and it persits for every project in the Mesh folder. Very strange.&amp;nbsp;&lt;/p&gt;
[quote userid="92402" url="~/f/nordic-q-a/65991/sdk-uart-coexistence-example-problem/274627#274627"]SDK Mesh v4.2.0 and SDK v16.0.0[/quote]
&lt;p&gt;I have the same set-up as you. I wonder if I missed other setting from SES. But from my perspective, it should be fine.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274627?ContentTypeID=1</link><pubDate>Tue, 13 Oct 2020 12:18:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8ed602cf-bc60-4430-96a9-64b91e68d2cf</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi Marry,&lt;/p&gt;
&lt;p&gt;The examples in&lt;span&gt;&amp;nbsp;nRF5 SDK for Mesh v4.2.0 are built for nRF5 SDK v16.0.0, so I can&amp;#39;t guarantee that they&amp;#39;ll work with v17.0.2. When I tested the coexistence example I used SDK Mesh v4.2.0 and SDK v16.0.0, and it worked, so switching to 16.0.0 might fix your problem. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If you want to use v17.0.2 you should look at the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/index.html"&gt;release notes for v17.0.2&lt;/a&gt;&amp;nbsp;as well as the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/migration.html"&gt;migration guide&lt;/a&gt;&amp;nbsp;in order to figure out what was changed between the two releases. Someone had a similar problem when trying to build an example built for v17.0.0 with v17.0.2, so you could try out the solution by Simon to that problem, which can be found&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/66537/ses-compilations-error-with-github-sample/272669#272669"&gt;here&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Marte&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: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/274601?ContentTypeID=1</link><pubDate>Tue, 13 Oct 2020 11:47:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:29c935f1-21a3-4a6d-8aa7-0326f0f6cfe2</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/marte.m"&gt;Marte Myrvold&lt;/a&gt;! I have some updates and a question about my progress.&lt;/p&gt;
&lt;p&gt;I installed&amp;nbsp; SDK Mesh 4.2.0 and SDK 17.0.2, so that I can run the&amp;nbsp;nRF52833 example.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Unfortunately I get this error and it happens for all projects in my newer Mesh folder.&amp;nbsp;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/error13oct.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;Do you have any idea why this&amp;nbsp;happens? It&amp;#39;s an unmodified version, downloaded from &lt;a href="https://www.nordicsemi.com/Software-and-tools/Software/nRF5-SDK-for-Mesh/Download"&gt;the official website&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As a note, I have included the correct path from Options - Building - global macros. &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Thank you in advance!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/273792?ContentTypeID=1</link><pubDate>Thu, 08 Oct 2020 13:53:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b095b024-e1f6-4e2d-9839-b6378e50ebfb</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;Thank you, again extremely helpful answer! The only difference is that I was using SDK Mesh version 3.2.0. And there was no support for this board. But now I had a look over the newer version and I see that they support&amp;nbsp;&lt;span&gt;nrf52833_xxAA. I will try this now, thank you!! &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f947.svg" title="First place"&gt;&amp;#x1f947;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/273777?ContentTypeID=1</link><pubDate>Thu, 08 Oct 2020 13:34:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ed01851c-ab25-43d6-a76f-44903d8d528b</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi Marry,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m happy to help!&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re programming&amp;nbsp;light_switch_client_nrf52832_xxAA&amp;nbsp;to your nRF52833 DK you will get problems, as that project is for the nRF5&lt;span&gt;2832, and should be used if your board is a nRF52 DK. Instead, you should use&amp;nbsp;light_switch_server_nrf52833_xxAA, which is for the&amp;nbsp;nRF52833 DK. The hardware and layout of the DKs are different, so the buttons and LEDs are connected to different GPIOs, and as such, the buttons and LEDs on the&amp;nbsp;nRF52833 DK will not work as expected with a project for another DK. For instance, LED 1 is&amp;nbsp;P0.13 on the&amp;nbsp;the&amp;nbsp;&lt;span&gt;nRF52833 DK, while on&amp;nbsp;the&amp;nbsp;nRF52 DK LED 1 is P0.17. If you want to, you can find the tables for the buttons and LEDs&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/ug_nrf52833_dk/UG/nrf52833_DK/hw_buttons_leds.html"&gt;here&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/ug_nrf52832_dk/UG/nrf52_DK/hw_btns_leds.html"&gt;here&lt;/a&gt;&amp;nbsp;for the&amp;nbsp;nRF52833 DK and nRF52 DK respectively.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;Thank you, and have a great day yourself!&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;Marte&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/273744?ContentTypeID=1</link><pubDate>Thu, 08 Oct 2020 12:31:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d9b7a4d-6458-46eb-bda4-885d97868f34</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hi Ms.&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/marte.m"&gt;Marte Myrvold&lt;/a&gt;&amp;nbsp;and thank you very much for the complete and well documented answer!&lt;/p&gt;
&lt;p&gt;I have not answered so far, because I have been waiting for another Development Board, to try the set-up which you proposed. &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;So my setup is now: 3 Development boards, from which 2 are nRF52840 and one is nRF52833. Unfortunately, it seems more difficult than I thought, to run the mesh on the nRF&lt;span&gt;52833.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I loaded the &lt;em&gt;light_switch_client_nrf52832_xxAA&lt;/em&gt; project and it does advertise in the nRF Mesh App &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f197.svg" title="Ok"&gt;&amp;#x1f197;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;so it looks like to code is successfully flashed and the board is responsive. However, neither the button (for the client code), nor the LED (for the server code) are responding. I have a guess that it may only be a problem of I/O routing, that is&amp;nbsp;solvable from the code. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Do you have an idea how I could make this?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thank you very much and I wish you a nice day! &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f31e.svg" title="Sun with face"&gt;&amp;#x1f31e;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/271283?ContentTypeID=1</link><pubDate>Thu, 24 Sep 2020 10:05:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a6b7bd60-50bf-4c00-9a76-4f1c53e07b8b</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m sorry for the late reply. I had to test this example myself and it took some time.&lt;/p&gt;
&lt;p&gt;The guide can be a bit confusing when it comes to the last part with the light switch example, but I will try to explain the process here.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You need two DKs, one for the light switch server example and one for uart coexistence example.&lt;/li&gt;
&lt;li&gt;Build and flash the light switch server example as explained in &lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v4.2.0/md_examples_light_switch_README.html"&gt;the guide for the example&lt;/a&gt; on one of the DKs.&lt;/li&gt;
&lt;li&gt;Instead of flashing light switch client to the second DK, you should instead flash the SDK uart coexistence example to it, after following &lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v4.2.0/md_examples_sdk_coexist_ble_app_uart_coexist_README.html"&gt;the guide for the example&lt;/a&gt; (copying the&amp;nbsp;ble_app_uart_coexist folder to&amp;nbsp;examples/ble_peripheral in nRF5 SDK etc.)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I just tested that this works. However, I used the provisioner example in the nRF Mesh SDK instead of the Mesh app as it fixes everything with provisioning so you don&amp;#39;t have to do it manually, which you have to do with the nRF Mesh app. In order to test it with the provisioner example like I did, you should do the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Build and flash light switch server and uart coexistence on two DKs as explained above.&lt;/li&gt;
&lt;li&gt;Build and flash the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v4.2.0/md_examples_provisioner_README.html"&gt;provisioner example&lt;/a&gt;&amp;nbsp;on a third DK. I did not have to change or do anything with the example for it to work as intended.&lt;/li&gt;
&lt;li&gt;Turn on the three DKs and press button 1 on the &lt;span&gt;provisioning&amp;nbsp;board&amp;nbsp;&lt;/span&gt;in order to start the provisioning process.&lt;/li&gt;
&lt;li&gt;When LED 1 on the provisioning board&amp;nbsp;remains lit steadily for a few seconds, all available boards have been provisioned and configured, and you can start testing the example.&lt;/li&gt;
&lt;li&gt;Open nRF Connect app on your phone and connect to NORDIC_UART (which is the uart coexistence board)&lt;/li&gt;
&lt;li&gt;Simulate button presses on the uart coexistence board by sending a number (1-4) to it using the nRF Connect App. You will then see the LEDs on the light switch server board are turned on and off. For example, sending 1 will turn on LED1, and 2 will turn it off. You can also check that this is the same as when you press buttons 1 and 2 on the uart coexistence board.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I hope this helps you understand how to test this out.&lt;/p&gt;
&lt;p&gt;As for the question about the uart coexistence example not working with the nRF Mesh App. This is because the nRF Mesh app does provisioning over GATT, since smart phones don&amp;#39;t support provisioning or Mesh activity over ADV. However, the uart coexistence example does not use GATT (both GATT proxy and GATT provisioner bearer are disabled). This is likely because the example is a combination of mesh and BLE examples, so you already have BLE+mesh there, and the the GATT proxy functionality will make it so you kind of get an additional instance of BLE. You could try to implement GATT provisioning and functionality in the example yourself, but I don&amp;#39;t know if it will work, and I wouldn&amp;#39;t recommend it.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/270796?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 10:51:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:25aa4815-7765-4b7f-9245-686350c41131</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;I see in&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/50761/coexistence-examples-sdk-uart-coexistence-example"&gt;this post&lt;/a&gt; that&amp;nbsp;&lt;span&gt;&amp;nbsp;&amp;quot;&lt;/span&gt;&lt;span&gt;SDK UART coexistence example does not work with &lt;em&gt;nRF Mesh APP&lt;/em&gt;. You need find some other provisioning ways...&amp;quot; - So, I wonder: is this true&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/2753.svg" title="Question"&gt;&amp;#x2753;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Could you test this&amp;nbsp;project successfully&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/2754.svg" title="Grey question"&gt;&amp;#x2754;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/270785?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 10:00:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:04e40402-a3d8-48c3-8c52-03a0e899aed3</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Ms.&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/marte.m"&gt;Marte Myrvold&lt;/a&gt;, is it possible that I&amp;nbsp; did not do the last step from the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v3.2.0%2Fmd_examples_sdk_coexist_ble_app_uart_coexist_README.html"&gt;coexistence example&lt;/a&gt; correctly?&lt;/p&gt;
&lt;p&gt;I just replaced the .hex file:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/last_5F00_step_5F00_coexistence-.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;Is there some other trick? Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/270619?ContentTypeID=1</link><pubDate>Mon, 21 Sep 2020 13:33:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1039b73-d7cc-47b8-9399-db653a6a666e</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hi Ms.&amp;nbsp;&lt;a class="internal-link view-user-profile" href="https://devzone.nordicsemi.com/members/marte.m"&gt;Marte Myrvold&lt;/a&gt;,&lt;/p&gt;
&lt;p&gt;I sucessfully built the&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v3.2.0%2Fmd_examples_sdk_coexist_ble_app_uart_coexist_README.html"&gt;SDK UART coexistence example&lt;/a&gt;&amp;nbsp;and now I am trying to test it - but I am not successful.&lt;/p&gt;
&lt;p&gt;What I&amp;#39;d like to do is to :&lt;/p&gt;
&lt;p&gt;1. First connect to the nRF board with the nRF Mesh App (then assign it with some address). And afterwards,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2. Check the UART functionality by sending some data from the phone to the board. And visualise that with putty.&lt;/p&gt;
&lt;p&gt;Unfortunately, none of the steps works. I cannot connect with nRF mesh from the phone. And also in the nRF connect, I cannot find the option for writing into a characteristic, which should send the message to the board and then see it with putty.&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/Screenshot_5F00_20200921_2D00_151128_5F00_nRF-Connect.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;Maybe the &lt;em&gt;Mesh Proxy Data In&lt;/em&gt; should be the answer for step number 2. However, nothing pops up in putty, so I would say that the board does not receive this message.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Do&amp;nbsp; you have any idea how to debug this problem?&lt;/p&gt;
&lt;p&gt;Thanks in advance!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/270090?ContentTypeID=1</link><pubDate>Thu, 17 Sep 2020 12:30:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8c344751-bd54-4e4a-985c-867038c2d84b</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Great to hear that you managed to solve the problem yourself!&lt;/p&gt;
&lt;p&gt;Yes, with the coexistence examples you have to copy the example folders to the nRF5 SDK folder and build it from there, as you did.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s also a guide about integrating mesh into nRF5 SDK examples&amp;nbsp;&lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v4.2.0/md_doc_user_guide_integrating_mesh_nrf5_sdk.html"&gt;here&lt;/a&gt;, which can be useful if you experience any new problems. However, with the &lt;span&gt;coexistence&amp;nbsp;examples, I don&amp;#39;t think you should have to&amp;nbsp;do everything under &amp;quot;Including nRF5 SDK for Mesh functionality in an nRF5 SDK example&amp;quot;, as the files and folders should already be included. At least they were when I tested the example earlier.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Hope you&amp;#39;re able to run the example without any problems now.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Marte&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/270073?ContentTypeID=1</link><pubDate>Thu, 17 Sep 2020 12:05:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:015a303a-ebf2-4aa4-ae44-b0b133ea64a4</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Problem solved.&lt;/p&gt;
&lt;p&gt;Solution: the project needs to be run from&amp;nbsp;...\nRF5_SDK_1530\examples\ble_peripheral\ble_app_uart_coexist\pca10040\s132\ses (&lt;strong&gt;not&lt;/strong&gt; from the Mesh folder).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/270063?ContentTypeID=1</link><pubDate>Thu, 17 Sep 2020 11:41:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:332ecae2-de40-4e43-aec1-4aaa66b2d628</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Hi. Trying to build the example (did not do any modification), these errors occur:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/4604.err.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;The problem is that the &lt;em&gt;components&lt;/em&gt; folder does not even exist in the Mesh folder, but rather in the other one (SDK folder). And the global macros in SES are defined as:&lt;/p&gt;
&lt;p&gt;SDK_ROOT=C:\SESProj\nRF5_SDK_1530&lt;/p&gt;
&lt;p&gt;MESH_ROOT=C:\SESProj\nrf5_SDK_for_Mesh_v320&lt;/p&gt;
&lt;p&gt;Do you have any clue why this happens? Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/269899?ContentTypeID=1</link><pubDate>Wed, 16 Sep 2020 13:40:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:511908d5-0e87-4990-9033-9412e500211f</guid><dc:creator>Marry</dc:creator><description>&lt;p&gt;Ok, I get it, thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK UART coexistence example problem</title><link>https://devzone.nordicsemi.com/thread/269895?ContentTypeID=1</link><pubDate>Wed, 16 Sep 2020 13:31:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dd55a876-d662-444b-9f1b-afc1a1e61aba</guid><dc:creator>Marte Myrvold</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The Output folder in .../pca10040/s132/ses/ and all the files in it&amp;nbsp;are&amp;nbsp;generated when you build your&amp;nbsp;project. Try building the&amp;nbsp;ble_app_uart_coexist example in SES. The&amp;nbsp;folder, and then also the .hex file, should be then generated, and you should&amp;nbsp;be able to find the file.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Marte&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>