<?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>Need information on any App support for my setup</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/74627/need-information-on-any-app-support-for-my-setup</link><description>I have Raspbery pi flashed with nordic alpha 4.1.0.1 image + nrf52840 dongle in NCP design . 
 As an end device I have EFR32 MG12 WSTK flashed with OT-CLI-FTD code and connected to the BorderRouter as a child. 
 I have one more extra nrf52840 dongle too</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 10 May 2021 14:49:11 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/74627/need-information-on-any-app-support-for-my-setup" /><item><title>RE: Need information on any App support for my setup</title><link>https://devzone.nordicsemi.com/thread/309035?ContentTypeID=1</link><pubDate>Mon, 10 May 2021 14:49:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:362dcb9a-3208-48c8-bdb3-75b727f0c07d</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>[quote user="UmaMaheswar"]If I wanted to go for WiFi dependency, How do I check if the mobile phone and BorderRouter has IPv6 Connectivity and what setup do I actually need if I need to go&amp;nbsp;with WIFI process?&amp;nbsp;[/quote]
&lt;p&gt;You can see this from the ifconfig output of your Border Router:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;pi@raspberrypi:~ $ ifconfig
eth0: flags=4163&amp;lt;UP,BROADCAST,RUNNING,MULTICAST&amp;gt;  mtu 1500
        inet 192.168.68.118  netmask 255.255.255.0  broadcast 192.168.68.255
        inet6 fe80::ba27:ebff:fe98:7d96  prefixlen 64  scopeid 0x20&amp;lt;link&amp;gt;
        ether b8:27:eb:98:7d:96  txqueuelen 1000  (Ethernet)
        RX packets 4978262  bytes 790060249 (753.4 MiB)
        RX errors 0  dropped 121  overruns 0  frame 0
        TX packets 263186  bytes 47391892 (45.1 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you see a inet6 line&amp;nbsp;with&amp;nbsp;scopeid 0x0&amp;lt;global&amp;gt; and a prefixlen of 62 or lower, you should be able to achieve IPv6 connectivity to the end nodes. In the output I posted above, there is no global IPv6 connectivity.&lt;/p&gt;
[quote user="UmaMaheswar"]If I want to go for BLE, What do I actually need? and the setup that I have is enough for this example?[/quote]
&lt;p&gt;Starting out with the&amp;nbsp;&lt;a title="BLE UART and Thread MTD CoAP Client Examples" href="https://infocenter.nordicsemi.com/topic/sdk_tz_v4.1.0/thread_multi_dynamic_uart_coap_example.html?cp=7_3_2_10_3_1_0"&gt;BLE UART and Thread MTD CoAP Client Example&lt;/a&gt;&amp;nbsp;may be the simples approach. Then you can use the &lt;a href="https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Toolbox"&gt;nRF Toolbox app&lt;/a&gt; to send strings to the Thread device over BLE through the Nordic UART service (NUS). Other nodes in the network can run &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_tz_v4.1.0/thread_client_server_example.html#thread_client_server_example_coap-server"&gt;CoAP server example&lt;/a&gt; to receive data from the BLE-enabled node. You need to adapt the examples for your data types.&lt;/p&gt;
[quote user="UmaMaheswar"]Everywhere in that examples they have shown support for only for the DK but not for Dongle. Does it have support for dongle too?[/quote]
&lt;p&gt;The dongles are only supported for NCP and CLI examples. We high discourage using the dongles for firmware development, as they have not debug capabilities built-in. It is possible to adapt the examples to adapt the examples to run on the dongle, but using the DK is much simpler for development.&lt;/p&gt;
[quote user="UmaMaheswar"]Among these which is the simplest method to perform? and can you please guide me to&amp;nbsp;install&amp;nbsp;that with my current setup i.e. BorderRouter[Raspberry Pi with Nordic Alpha image+Nrf52840 Dongle flashed with NCP] and EFR32MG12 flashed with ot-cli-ftd code and acting as a child device ??[/quote]
&lt;p&gt;Given that your phone and the Thread nodes have global IPv6 connectivity, the WiFi approach is definitely the simples, as you can send packets directly using the IPv6 address without the need for any packet translation in between. Development on the phone side may be a bigger effort with the WiFi approach, as we do not have any applications providing this, but since this would be using standard IP tools, there should be 3rd party applications you can use.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Need information on any App support for my setup</title><link>https://devzone.nordicsemi.com/thread/307821?ContentTypeID=1</link><pubDate>Mon, 03 May 2021 05:14:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bfdebb2b-38f5-4ba1-bb96-5c8a169a1c3a</guid><dc:creator>UmaMaheswar</dc:creator><description>&lt;p&gt;If I wanted to go for WiFi dependency, How do I check if the mobile phone and BorderRouter has IPv6 Connectivity and what setup do I actually need if I need to go&amp;nbsp;with WIFI process?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If I want to go for BLE, What do I actually need? and the setup that I have is enough for this example?&lt;/p&gt;
&lt;p&gt;Everywhere in that examples they have shown support for only for the DK but not for Dongle. Does it have support for dongle too?&lt;/p&gt;
&lt;p&gt;Among these which is the simplest method to perform? and can you please guide me to&amp;nbsp;install&amp;nbsp;that with my current setup i.e. BorderRouter[Raspberry Pi with Nordic Alpha image+Nrf52840 Dongle flashed with NCP] and EFR32MG12 flashed with ot-cli-ftd code and acting as a child device ??&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Need information on any App support for my setup</title><link>https://devzone.nordicsemi.com/thread/307709?ContentTypeID=1</link><pubDate>Fri, 30 Apr 2021 15:26:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a007d96d-0172-4c5e-a9a7-5ead2610417e</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Since the mobile phone does not have Thread capabilities, you need to do the communication over another network interface. You have two available options with your setup:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Use our &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_tz_v4.1.0/thread_multi_examples.html"&gt;multiprotocol solution&lt;/a&gt;, to send data over BLE from the phone to the node in the Thread network, which can forward the data to other devices.&lt;/li&gt;
&lt;li&gt;Send the data from the phone over WiFi, through the border router and to the Thread end-node.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Sending data over WiFi depends a bit on the setup on both the phone and the border router. If both devices have global IPv6 connectivity, you can talk directly between the two devices without any translations. If you only have IPv4 connectivity, or the border router have too small address space to assign global IPv6 addresses to the end-node, the setup becomes more compex. Let me know more about what you are trying to achieve, and I will try to give you a more precise suggestion.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Jørgen&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>