<?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>How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/43108/how-do-i-test-example-project-iot-mqtt-publish-and-subscribe-projects</link><description>The example projects I am referring to is located here: 
 nRF5_SDK_15.2.0\examples\iot\mqtt\lwip\subscriber\pca10056\s140\ses\iot_lwip_mqtt_subscriber_pca10056_s140 
 nRF5_SDK_15.2.0\examples\iot\mqtt\lwip\publisher\pca10056\s140\ses\iot_lwip_mqtt_publisher_pca10056_s140</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 21 Feb 2019 14:43:42 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/43108/how-do-i-test-example-project-iot-mqtt-publish-and-subscribe-projects" /><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/172337?ContentTypeID=1</link><pubDate>Thu, 21 Feb 2019 14:43:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c5931227-c250-42a1-8f21-0e51c0d3fdfc</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Hi Pih,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I apologize for the late reply.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Are you running the command as sudo? i.e.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;sudo ifconfig bt0 add 2001:db8::1/64&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I beleive things must be done in the following order&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&lt;span&gt;# Log in as a root user.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;sudo su&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Mount debugfs file system.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;mount -t debugfs none /sys/kernel/debug&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Load 6LoWPAN module.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;modprobe bluetooth_6lowpan&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Enable the bluetooth 6lowpan module.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;echo 1 &amp;gt; /sys/kernel/debug/bluetooth/6lowpan_enable&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Look for available HCI devices.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;hciconfig&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Reset HCI device - for example hci0 device.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;hciconfig hci0 reset&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Read 00:AA:BB:XX:YY:ZZ address of the nRF5x device.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;hcitool lescan&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Connect to the device.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;echo &lt;span&gt;&amp;quot;connect 00:AA:BB:XX:YY:ZZ 1&amp;quot;&lt;/span&gt; &amp;gt; /sys/kernel/debug/bluetooth/6lowpan_control&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Check if you have established a connection.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;ifconfig&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;# Set IPv6 forwarding (must be present).&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;sudo echo 1 &amp;gt; /proc/sys/net/ipv6/conf/all/forwarding&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Run radvd daemon.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;sudo service radvd restart&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;#Assign prefix&lt;/div&gt;
&lt;div&gt;&lt;span&gt;ifconfig bt0 add 2001:db8::1/64&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;# Observe if new IPv6 prefix is disseminating over bt0 interface.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;ifconfig&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Try to ping the device using its link-local address, for example, on bt0 interface.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;ping6 -I bt0 fe80::2AA:BBFF:FEXX:YYZZ&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Disconnect from the device.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;echo &lt;span&gt;&amp;quot;disconnect 00:AA:BB:XX:YY:ZZ&amp;quot;&lt;/span&gt; &amp;gt; /sys/kernel/debug/bluetooth/6lowpan_control&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Check if there are active connections left.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;ifconfig&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/170758?ContentTypeID=1</link><pubDate>Wed, 13 Feb 2019 07:19:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:141def91-fb6e-4ecf-bcec-8448076679e9</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;&lt;span&gt;&amp;quot;ifconfig bt0 add 2001:db8::1/64&amp;quot; didn&amp;#39;t help&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;How can I find the root cause of why it&amp;#39;s not working?&amp;nbsp; Is it possible for you to run the example project on the same HW?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/170175?ContentTypeID=1</link><pubDate>Fri, 08 Feb 2019 16:43:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:073df1b2-4e75-4b1b-86e5-524b03aaaed7</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Hi Pih&lt;/p&gt;
&lt;p&gt;you need to call&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;span&gt;ifconfig bt0 add 2001:db8::1/64 &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;to add the prefix, the radvd service does not do this as it shold i thinnk.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Bjørn&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/170029?ContentTypeID=1</link><pubDate>Fri, 08 Feb 2019 00:22:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7cd8588a-e009-4028-85d5-eb68f7fbfbba</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;Thanks good to know!&lt;/p&gt;
&lt;p&gt;I am going through the 16 test steps of &amp;quot;pca10056 MQTT Client Publisher&amp;quot;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_app_mqtt_publisher?1649#iot_sdk_app_mqtt_publisher_test"&gt;https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_app_mqtt_publisher?1649#iot_sdk_app_mqtt_publisher_test&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And the client startup advertising, push button 1 and it connect to 6lowpan router, push button 2 result in error code 0000c943, instead of connecting to the MQTT Broker.&lt;/p&gt;
&lt;p&gt;What does the error code mean?&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1549582975907v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Can you tell me how to insert the brokers IPv6 addr correctly, please!&lt;/p&gt;
&lt;p&gt;Is this correct inserted it in&amp;nbsp;&lt;span&gt;MQTT Client Publisher&amp;#39;s main.c file. m_broker_addr&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/pastedimage1549583536327v2.png" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;when:&lt;/p&gt;
&lt;p&gt;linux mosquitto broker&amp;#39;s IPv6 addr fe80::8292:9e6f:cc08:1520/64&lt;/p&gt;
&lt;p&gt;windows&amp;nbsp;&lt;span&gt;mosquitto broker&amp;#39;s Link-local IPv6: fe80::bdeb:857e:f92b:730f%13&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;This is the only place I have setup the MQTT brokers addr, is that correct?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;In step 8 &amp;quot;Prepare the IPv6 global prefix for the btX interface&amp;quot; in the 6lowpan router.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I followed the guide&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_user_guides_radvd"&gt;https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_user_guides_radvd&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Enter root user&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;sudo su&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;sudo apt-&lt;span class="keyword"&gt;get&lt;/span&gt; install radvd&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I modified the /etc/radvd.conf file&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/pastedimage1549584627549v3.png" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;and ran&lt;/span&gt;&lt;/p&gt;
&lt;div class="line"&gt;&lt;span class="preprocessor"&gt;# Set IPv6 forwarding (must be present).&lt;/span&gt;&lt;/div&gt;
&lt;div class="line"&gt;&lt;span class="preprocessor"&gt;&lt;/span&gt;sudo echo 1 &amp;gt; /proc/sys/net/ipv6/conf/all/forwarding&lt;/div&gt;
&lt;div class="line"&gt;&lt;/div&gt;
&lt;div class="line"&gt;&lt;span class="preprocessor"&gt;# Run radvd daemon.&lt;/span&gt;&lt;/div&gt;
&lt;div class="line"&gt;&lt;span class="preprocessor"&gt;&lt;/span&gt;sudo service radvd restart&lt;/div&gt;
&lt;div class="line"&gt;&lt;/div&gt;
&lt;div class="line"&gt;Commands had no errors, but not sure I could see this happen&lt;/div&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;quot;Observe if new IPv6 prefix is disseminating over bt0 interface&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;ifconfig gave me this:&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span&gt;bt0: inet6 fe80::b827..... and it should be 2001:db8::...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Please advise..&lt;/p&gt;
&lt;p&gt;Help is appreciated!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/169778?ContentTypeID=1</link><pubDate>Wed, 06 Feb 2019 15:22:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e379bac7-b0c0-4256-aa24-823732d8a68a</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Yes, after looking at some forums it should be ok to just create the&amp;nbsp;REPORTING-BUGS file. It does not appear to be used&amp;nbsp;by the kernel so this is a Ok way to fix the issue.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/169403?ContentTypeID=1</link><pubDate>Tue, 05 Feb 2019 06:40:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a95cbcec-6c30-483d-8d0a-f41f33c98dd0</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;Thanks, CCPREFIX was the problem. I exported in one terminal and I ran the build command from another terminal. It build successfully!&lt;/p&gt;
&lt;p&gt;I hit the next error in step 6 Generate .deb packages.&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$ CONCURRENCY_LEVEL=5 DEB_HOST_ARCH=armhf fakeroot make-kpkg --append-to-version -plp --revision `date +%Y%m%d%H%M%S` --ARCH=arm --cross-compile ${CCPREFIX} kernel_image kernel_headers&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;...&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;install -p -o root -g root -m 644 REPORTING-BUGS /home/plp/Nordic-Semi/rpikernel/linux/debian/linux-headers-4.14.95-plp-v7+/usr/share/doc/linux-headers-4.14.95-plp-v7+/&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;install: cannot stat &lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;&amp;#39;REPORTING-BUGS&amp;#39;: No such file or directory&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;debian/ruleset/targets/headers.mk:40: recipe for target &amp;#39;debian/stamp/install/linux-headers-4.14.95-plp-v7+&amp;#39; failed&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;make[1]: *** [debian/stamp/install/linux-headers-4.14.95-plp-v7+] Error 1&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;make[1]: Leaving directory &amp;#39;/home/plp/Nordic-Semi/rpikernel/linux&amp;#39;&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;debian/ruleset/local.mk:102: recipe for target &amp;#39;kernel_headers&amp;#39; failed&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;make: *** [kernel_headers] Error 2&lt;/span&gt;&lt;/h3&gt;
&lt;h3&gt;&lt;span&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;One solution is just to create an empty&amp;nbsp;REPORTING-BUGS file and it will compile,&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;but what do you say about it? Is there a better way to fix the error??&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;/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: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/169226?ContentTypeID=1</link><pubDate>Mon, 04 Feb 2019 08:24:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:42d491d1-b29f-4a11-96b5-7750010975dc</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Have you exported the&lt;span&gt;&amp;nbsp;CCPREFIX correctly? You could try to replace ${CCPREFIX} with the actual path of the toolchain. See the two forum posts below:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://www.raspberrypi.org/forums/viewtopic.php?t=76850"&gt;https://www.raspberrypi.org/forums/viewtopic.php?t=76850&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://www.raspberrypi.org/forums/viewtopic.php?f=26&amp;amp;t=39592"&gt;https://www.raspberrypi.org/forums/viewtopic.php?f=26&amp;amp;t=39592&lt;/a&gt;&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: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/169131?ContentTypeID=1</link><pubDate>Fri, 01 Feb 2019 20:37:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7d53c891-66ee-4bde-a1a4-21c30f6bfbb2</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Still moving forward..but&amp;nbsp;I ran into some issues starting the cross compiling step 5! First issue was &amp;quot;No rule to make target &amp;#39;--j5&amp;#39;&lt;/p&gt;
&lt;p&gt;I am using a Core i5 with 4 CPU cores, so it should be OK with --j5, anyway I tried again without --j5 and it resulted in GCC -option errors. see below.&lt;/p&gt;
&lt;p&gt;The first 4 steps seem to be successful, not sure where the chain dropped off.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Some system info:&lt;/p&gt;
&lt;p&gt;Ubuntu 16.04 LTS PC with 4 GB&lt;/p&gt;
&lt;p&gt;plp@toby:~$ uname -a&lt;br /&gt;Linux toby 4.4.0-141-generic #167-Ubuntu SMP Wed Dec 5 10:40:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux&lt;/p&gt;
&lt;p&gt;Any feedback is appreciated&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h3 class="western"&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$ ARCH=arm CROSS_COMPILE=${CCPREFIX} make bcm2709_defconfig HOSTCC scripts/basic/fixdep&lt;/h3&gt;
&lt;h3 class="western"&gt;HOSTCC scripts/kconfig/conf.o&lt;/h3&gt;
&lt;h3 class="western"&gt;SHIPPED scripts/kconfig/zconf.tab.c&lt;/h3&gt;
&lt;h3 class="western"&gt;SHIPPED scripts/kconfig/zconf.lex.c&lt;/h3&gt;
&lt;h3 class="western"&gt;HOSTCC scripts/kconfig/zconf.tab.o&lt;/h3&gt;
&lt;h3 class="western"&gt;HOSTLD scripts/kconfig/conf&lt;/h3&gt;
&lt;h3 class="western"&gt;#&lt;/h3&gt;
&lt;h3 class="western"&gt;# configuration written to .config&lt;/h3&gt;
&lt;h3 class="western"&gt;#&lt;/h3&gt;
&lt;h3 class="western"&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$ ARCH=arm CROSS_COMPILE=${CCPREFIX} INSTALL_MOD_PATH=${MODULES_TEMP} make &amp;ndash;j5&lt;/h3&gt;
&lt;h3 class="western"&gt;scripts/kconfig/conf --silentoldconfig Kconfig&lt;/h3&gt;
&lt;h3 class="western"&gt;make: *** No rule to make target &amp;#39;&amp;ndash;j5&amp;#39;. Stop.&lt;/h3&gt;
&lt;h3 class="western"&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$ ARCH=arm CROSS_COMPILE=${CCPREFIX} INSTALL_MOD_PATH=${MODULES_TEMP} make &amp;ndash;j5 modules&lt;/h3&gt;
&lt;h3 class="western"&gt;make: *** No rule to make target &amp;#39;&amp;ndash;j5&amp;#39;. Stop.&lt;/h3&gt;
&lt;h3 class="western"&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$ ARCH=arm CROSS_COMPILE=${CCPREFIX} INSTALL_MOD_PATH=${MODULES_TEMP} make&lt;/h3&gt;
&lt;h3 class="western"&gt;SYSHDR arch/arm/include/generated/uapi/asm/unistd-common.h&lt;/h3&gt;
&lt;h3 class="western"&gt;SYSHDR arch/arm/include/generated/uapi/asm/unistd-oabi.h&lt;/h3&gt;
&lt;h3 class="western"&gt;SYSHDR arch/arm/include/generated/uapi/asm/unistd-eabi.h&lt;/h3&gt;
&lt;h3 class="western"&gt;CHK include/config/kernel.release&lt;/h3&gt;
&lt;h3 class="western"&gt;UPD include/config/kernel.release&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/bitsperlong.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/errno.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/ioctl.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/ipcbuf.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/msgbuf.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/param.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/poll.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/resource.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/sembuf.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/shmbuf.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/siginfo.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/socket.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/sockios.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/termbits.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/uapi/asm/termios.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/clkdev.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/current.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/early_ioremap.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/emergency-restart.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/exec.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/extable.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/irq_regs.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/kdebug.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/local.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/local64.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/mm-arch-hooks.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/msi.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/parport.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/preempt.h&lt;/h3&gt;
&lt;h3 class="western"&gt;WRAP arch/arm/include/generated/asm/rwsem.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/seccomp.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/segment.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/serial.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/simd.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/sizes.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/timex.h&lt;/h3&gt;
&lt;h3&gt;WRAP arch/arm/include/generated/asm/trace_clock.h&lt;/h3&gt;
&lt;h3&gt;CHK include/generated/uapi/linux/version.h&lt;/h3&gt;
&lt;h3&gt;UPD include/generated/uapi/linux/version.h&lt;/h3&gt;
&lt;h3&gt;CHK include/generated/utsrelease.h&lt;/h3&gt;
&lt;h3&gt;UPD include/generated/utsrelease.h&lt;/h3&gt;
&lt;h3&gt;HOSTCC scripts/basic/bin2c&lt;/h3&gt;
&lt;h3&gt;SYSNR arch/arm/include/generated/asm/unistd-nr.h&lt;/h3&gt;
&lt;h3&gt;GEN arch/arm/include/generated/asm/mach-types.h&lt;/h3&gt;
&lt;h3&gt;SYSTBL arch/arm/include/generated/calls-oabi.S&lt;/h3&gt;
&lt;h3&gt;SYSTBL arch/arm/include/generated/calls-eabi.S&lt;/h3&gt;
&lt;h3&gt;CC kernel/bounds.s&lt;/h3&gt;
&lt;h3&gt;gcc: error: unrecognized argument in option &amp;lsquo;-mabi=aapcs-linux&amp;rsquo;&lt;/h3&gt;
&lt;h3&gt;gcc: note: valid arguments to &amp;lsquo;-mabi=&amp;rsquo; are: ms sysv&lt;/h3&gt;
&lt;h3&gt;gcc: error: unrecognized command line option &amp;lsquo;-mlittle-endian&amp;rsquo;&lt;/h3&gt;
&lt;h3&gt;gcc: error: unrecognized command line option &amp;lsquo;-mapcs&amp;rsquo;&lt;/h3&gt;
&lt;h3&gt;gcc: error: unrecognized command line option &amp;lsquo;-mno-sched-prolog&amp;rsquo;&lt;/h3&gt;
&lt;h3&gt;gcc: error: unrecognized command line option &amp;lsquo;-mfpu=vfp&amp;rsquo;&lt;/h3&gt;
&lt;h3&gt;Kbuild:21: recipe for target &amp;#39;kernel/bounds.s&amp;#39; failed&lt;/h3&gt;
&lt;h3&gt;make[1]: *** [kernel/bounds.s] Error 1&lt;/h3&gt;
&lt;h3&gt;Makefile:1084: recipe for target &amp;#39;prepare0&amp;#39; failed&lt;/h3&gt;
&lt;h3&gt;make: *** [prepare0] Error 2&lt;/h3&gt;
&lt;h3&gt;plp@toby:~/Nordic-Semi/rpikernel/linux$&lt;/h3&gt;
&lt;h3&gt;&lt;/h3&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168795?ContentTypeID=1</link><pubDate>Thu, 31 Jan 2019 08:27:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0d801b4e-3911-4f07-a7cf-f4a0746c2627</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;div&gt;&lt;span&gt;Use the second kernel config command, it should be&amp;nbsp;# If Raspberry Pi 2/3, see&amp;nbsp;&lt;a href="https://www.raspberrypi.org/documentation/linux/kernel/configuring.md"&gt;https://www.raspberrypi.org/documentation/linux/kernel/configuring.md&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# If Raspberry Pi 2.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;pi@raspberry:~/raspbian/kernel/linux$ make bcm2709_defconfig&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;I am afraid that I do not know the requirements for the Ubuntu/Debian OS with the required modules and I do not know which single board computers that are equivalent to the Raspberry Pi.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168778?ContentTypeID=1</link><pubDate>Thu, 31 Jan 2019 00:47:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2620b78-0000-41e8-bc24-0326f3771939</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;Thanks again,&lt;/p&gt;
&lt;p&gt;Just a few more questions&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_rpi_kernel"&gt;https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_rpi_kernel&lt;/a&gt;&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/pastedimage1548895076668v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;What default kernel config command do I run if I am using RPi 3?&lt;/p&gt;
&lt;p&gt;If I should replace the RPi with other HW, what are the requirements?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any Ubuntu/Debian system with min. same amount of Flash and RAM as RPi, WiFi radio and&amp;nbsp;&lt;/p&gt;
&lt;p&gt;a USB port for the BLE dongle?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168750?ContentTypeID=1</link><pubDate>Wed, 30 Jan 2019 15:16:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fc1b37c1-5685-48e2-ab08-710aef966779</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Yes, that is correct. Yes, I have set up the Raspberry Pi as BLE/ Wifi Router, see&amp;nbsp;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_ug_border_router"&gt;Setting up BLE 6LoWPAN Border Router&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168725?ContentTypeID=1</link><pubDate>Wed, 30 Jan 2019 14:05:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b5fcdefc-359e-43a4-8d3b-0a9fa3d01e88</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;Thank you Bjorn&amp;nbsp;for links to example projects and test documentation.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Learned a lot from ATT_MTU example, returning to MQTT example&lt;/p&gt;
&lt;p&gt;I have a question to the &amp;quot;BLE enabled router&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1548854400071v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;The nRF52840DK doesn&amp;#39;t have wifi so it cannot act as the BLE/WIFI router unless I add a wifi module to it!&amp;nbsp;Is that correct?&amp;nbsp;Can I use a Raspberry Pi as BLE/WIFI router?&lt;/p&gt;
&lt;p&gt;What HW is best to test MQTT example project?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168522?ContentTypeID=1</link><pubDate>Tue, 29 Jan 2019 15:29:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a52f6acc-bb9d-46db-995e-439276965669</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;You mean just a regular BLE connection ? If that is the case, then you should take a look at the&amp;nbsp;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/ble_sdk_app_att_mtu"&gt;Experimental: ATT_MTU Throughput Example&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168515?ContentTypeID=1</link><pubDate>Tue, 29 Jan 2019 15:19:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4489fc52-523c-4907-907d-d900d9f6ab2f</guid><dc:creator>Olaf</dc:creator><description>&lt;p&gt;Thanks for your reply. If I don&amp;#39;t have the option of a 3rd device MQTT broker, is there a preferred protocol / best way to send and receive data/commands between two BLE devices? I assume it has to be a master-slave relationship, and payload be structured as a JSON document, and it has to be BLE5 to have a payload size of 253 bytes.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How do I test example project iot mqtt publish and subscribe projects?</title><link>https://devzone.nordicsemi.com/thread/168434?ContentTypeID=1</link><pubDate>Tue, 29 Jan 2019 12:08:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fa8b63b4-68ee-4f16-ac46-1ac386eace65</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Yes, you need a 3rd device that acts as the MQTT Broker, see&amp;nbsp;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_user_guides_mosquitto"&gt;Setting up the Mosquitto MQTT broker&lt;/a&gt;&amp;nbsp;for information on how to set this up on a&amp;nbsp;Windows, Linux or OS X device.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The MQTT examples are documented here,&amp;nbsp;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_app_mqtt"&gt;Experimental: IoT Examples&lt;span&gt;&amp;nbsp;/&amp;nbsp;&lt;/span&gt;MQTT&lt;/a&gt;. Each example have a Testing subsection in their documentation, explaining step by step how to test the examples, see&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_app_mqtt_publisher?1649#iot_sdk_app_mqtt_publisher_test"&gt;MQTT Client - Publisher&lt;span&gt;&amp;nbsp;/&amp;nbsp;&lt;/span&gt;Testing&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.nordicsemi.com/DocLib/Content/SDK_Doc/nRF5_SDK/v15-2-0/iot_sdk_app_mqtt_subscriber?1657#iot_sdk_app_mqtt_subscriber_test"&gt;MQTT Client - Subscriber&lt;span&gt;&amp;nbsp;/&amp;nbsp;&lt;/span&gt;Testing&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Bjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>