<?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>Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/28508/issue-with-mpu9250-and-nrf52</link><description>Hi, 
 I have been working on MPU9250 examples given in here .Though the program runs fine in KeilUvision 5, the output in tera term shows only 0,0,0 for Accelerometer values in X,Y and Z. I connected the MPU as specified in the header files. Can anyone</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 07 Jun 2018 21:34:22 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/28508/issue-with-mpu9250-and-nrf52" /><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/135259?ContentTypeID=1</link><pubDate>Thu, 07 Jun 2018 21:34:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:26bb61bc-41ff-4bee-86f0-99cc76ac5aff</guid><dc:creator>Fili</dc:creator><description>&lt;p&gt;Hi, I am using that example to test it with the MPU6050, I did exactly what I have to just as the README file indicates. I tried to get the accel data through the nRF Toolbox app UART and I did get any data. Either In which app am I suppose to get data or where can I get it?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;P.D. I am working with the SDK 14.2 and S132 V5.0.0&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/124169?ContentTypeID=1</link><pubDate>Tue, 13 Mar 2018 13:14:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4e139e77-ec9e-4520-b9a3-5ca1be597385</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;Now I can see logs on RTT&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Because in nrf_log some logs get display as some characters which can&amp;#39;t be understood&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/124168?ContentTypeID=1</link><pubDate>Tue, 13 Mar 2018 13:08:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7ffffd58-9b10-4b4e-9f6f-70f91736add6</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;That&amp;#39;s good that you can see nrf logs with j-link rtt viewer. That is what I use too. If you can now see the NRF_LOG_INFO prints on j-link rtt viewer, why can you not use NRF_LOG_INFO(&amp;quot;Entering main&amp;quot;) instead of SEGGER_RTT_printf()? I don&amp;#39;t understand why you want to use both NRF_LOG_INFO &amp;amp; SEGGER_RTT_printf()? Is it because you want to use termite instead of rtt viewer?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123989?ContentTypeID=1</link><pubDate>Mon, 12 Mar 2018 15:20:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e0a65dd6-2d2b-4042-adaa-f502316eeea5</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;Now i can see nrf logs&lt;/p&gt;
&lt;p&gt;i need to use j-link RTT viewer because values displayed in NRF_LOG_INFO are not recognisable as shown in attached file what changes do i need to make in code to get print&amp;nbsp;&lt;span&gt;SEGGER_RTT_printf(0,&amp;quot;Entered in main..&amp;quot;) .I have added&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;#include &amp;quot;SEGGER_RTT.h&amp;quot;&lt;br /&gt;#include &amp;quot;SEGGER_RTT_Conf.h&amp;quot;&lt;/p&gt;
&lt;p&gt;in main.c file&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img class="align-right" style="float:right;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/4137.termite.jpg" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123983?ContentTypeID=1</link><pubDate>Mon, 12 Mar 2018 15:02:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:968ece44-d6e8-42ec-ae6a-c1dd121cc262</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;Did you add the SEGGER_RTT_printf(0,&amp;quot;Entered in main..&amp;quot;) function call? What if you use the NRF_LOG_INFO() function instead, since that has been defined in multiple places? I am unsure whether it works to use both SEGGER_RTT_printf() &amp;amp; NRF_LOG_INFO() in the same program. Not sure it is advisable to do this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123831?ContentTypeID=1</link><pubDate>Mon, 12 Mar 2018 07:59:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:85a24596-d86a-4ac5-a67e-3933cd4d79e7</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;hi,as i m trying to print when execution starts i.e int main(void) as shown in recent reply&lt;/p&gt;
&lt;p&gt;but nothing get displayed on J-Link RTT .does it mean that code is not working/am&amp;nbsp; i missing something?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123652?ContentTypeID=1</link><pubDate>Fri, 09 Mar 2018 11:57:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8b773a52-e34a-454e-805e-d5220a99613e</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;Yes,i have connected wires to P0.01 (SCL) and P0.02 (SDA) of nrf52 DK now&lt;strong&gt;&lt;span style="text-decoration:underline;"&gt;.i am not able to see accel values and i dont see MPU BLE&amp;nbsp; device in nrf connect app.&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration:underline;"&gt;In main.c&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration:underline;"&gt;&amp;nbsp;&lt;/span&gt;#define DEVICE_NAME&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;MPU BLE&amp;quot;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="text-decoration:underline;"&gt; i added some log in main as SEGGER_RTT_printf(0,&amp;quot;entering main&amp;quot;) .It didnt get displayed on j-link RTT viewer&lt;/span&gt;&lt;/strong&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/4760.rtt.jpg" /&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/IMG_5F00_20180309_5F00_171352561.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;please help with&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123605?ContentTypeID=1</link><pubDate>Fri, 09 Mar 2018 10:14:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:92701a70-0b03-488c-8b86-70594a9f1465</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;It seems like you left&amp;nbsp;the TWI pins in nrf_drv_mpu_twi.c as:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#define MPU_TWI_SCL_PIN 3
#define MPU_TWI_SDA_PIN 4&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;right? If so, should you not have attached the wires to P0.01 &amp;amp; P0.02, as defined in the &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.nrf52832.ps.v1.1/pin.html?cp=2_1_0_3#pin_assign" target="_blank" rel="noopener noreferrer"&gt;pin assignment&lt;/a&gt; for nrf52832 QFN48?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123445?ContentTypeID=1</link><pubDate>Thu, 08 Mar 2018 13:17:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9dcdbbe2-d21c-4e90-9d3c-3c4d9881e831</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;Yes ,&amp;nbsp;no errors with this solution. i have done with first 4 steps of link given .Is their changes as given 5th step is&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Remember to define the correct TWI, SPI, and/or interrupt pins. The SPI and TWI pin defines are located in the nrf_drv_mpu_xxi.c files. The GPIOTE interrupt pin is defined in main.c &lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&amp;nbsp;i&amp;#39; m not getting accel values and not able to see logs on J-link segger/termite.I have connected pin P0.03 for SCL and P0.04 for&amp;nbsp; SDA as given in&amp;nbsp;&lt;span&gt;nrf_drv_mpu_xxi.c&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/IMG_5F00_20180308_5F00_184026230.jpg" /&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123436?ContentTypeID=1</link><pubDate>Thu, 08 Mar 2018 12:46:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:863c91b4-8473-46da-a256-6c859f226c77</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;Did you write MPU_USES_TWI in the Define field under Options for Target &amp;amp; the C/C++ tab? Did you&amp;nbsp;set SPI_ENABLED 0 &amp;amp;&amp;nbsp;TWI_ENABLED 1 in the sdk_config.h file? Essentially, did you follow everything under &lt;a href="https://github.com/Martinsbl/nrf5-mpu-examples" rel="noopener noreferrer" target="_blank"&gt;How to use in the github link&lt;/a&gt;?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123193?ContentTypeID=1</link><pubDate>Wed, 07 Mar 2018 09:07:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:920cd079-89d3-423d-9852-a298dc31d2ec</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;Thanks Bjorn kvaale,with this solution above&amp;nbsp;error rectified.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Now I&amp;nbsp;am getting these errors&lt;/p&gt;
&lt;p&gt;I am using TWI in target oprion c/c++&lt;/p&gt;
&lt;p&gt;errors are&lt;/p&gt;
&lt;p&gt;L6218E :undefined symbol nrf_drv_twi_enable&lt;/p&gt;
&lt;p&gt;&lt;span&gt;L6218E :undefined symbol nrf_drv_twi_init&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;L6218E :undefined symbol nrf_drv_twi_rx&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;L6218E :undefined symbol nrf_drv_twi_tx&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;L6218E :undefined symbol nrf_drv_twi_xfer&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;i have checked that d&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/error_5F00_image.jpg" /&gt;efintion for above functions are defined in Twi driver file ie.&amp;nbsp;nrf_drv_mpu_twi.c as given on&amp;nbsp;&lt;a href="https://github.com/Martinsbl/nrf5-mpu-examples"&gt;link&lt;/a&gt;&amp;nbsp;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;still&amp;nbsp;above error exist&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;how to fix this&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;help will be appreciated .&lt;/span&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;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/123180?ContentTypeID=1</link><pubDate>Wed, 07 Mar 2018 08:23:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:382fc031-ce8c-42ff-b67c-fd9fc3545d17</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;right click on the folder above Application, press Options for Target &amp;#39;....&amp;#39;, go to the C/C++ tab, press on the ... button to the right of include paths, scroll all the way to the bottom &amp;amp; change nrf5-mpu-examples to nrf5-mpu-examples-master. The app_mpu.h file is located inside this nrf5-mpu-examples-master folder. You need to go back 5 folders from the Keil project to reach the nrf5-mpu-examples-master folder,&amp;nbsp;which is why the last line should look like this:&amp;nbsp;..\..\..\..\..\nrf5-mpu-examples-master&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/122841?ContentTypeID=1</link><pubDate>Mon, 05 Mar 2018 13:59:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5dacbdbb-a6bc-4b0d-ad66-ed463e2ae253</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;i am using same example ,Code got build in kkeil fine ,But i am not getting accel values .&lt;/p&gt;
&lt;p&gt;what steps did you take to get values.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;please help how to resolve.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/122733?ContentTypeID=1</link><pubDate>Mon, 05 Mar 2018 06:20:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d3c055e4-ec18-4708-82bf-673b1ce05686</guid><dc:creator>kirt</dc:creator><description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;i am using same example ,&lt;/p&gt;
&lt;p&gt;&lt;span&gt;As given in&amp;nbsp; how to use section in thelink provide i have unzipped folder in C:\kirti\Nrf52dk\nRF5_SDK_14.2.0_17b948a\examples\nrf5-mpu-examples-master\nrf5-ble-mpu-data-ready-interrupts&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;code shows&amp;nbsp;1 error as type #5&amp;nbsp; when i build it in keil v5 as&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;1.cannot open source input file app_mpu.h&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;please help how to resolve&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112823?ContentTypeID=1</link><pubDate>Thu, 21 Dec 2017 11:17:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f7e8e30-3a30-46d3-97db-248defe1b0f9</guid><dc:creator>vam5104</dc:creator><description>&lt;p&gt;The issue was with my mpu9250. I have used twi sensor example and was able to get the output without any issues.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112822?ContentTypeID=1</link><pubDate>Tue, 19 Dec 2017 14:13:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4c7cef08-640c-4206-8a4c-1209b629dc3e</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;Could you please explain in more detail the steps you took to get the output? This could be very helpful for other people that run into the same problem in the future. Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112821?ContentTypeID=1</link><pubDate>Tue, 19 Dec 2017 14:02:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:58e2c863-b0ae-4913-8d4b-fd7cb2a19dd6</guid><dc:creator>vam5104</dc:creator><description>&lt;p&gt;I got the output but im facing another issue. &lt;a href="https://devzone.nordicsemi.com/question/184510/mpu9250-mpu-setup-infinite-loop/"&gt;posted here&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112820?ContentTypeID=1</link><pubDate>Mon, 04 Dec 2017 14:16:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:16d1e7e8-21e5-4922-bd6c-a9804cd5ae91</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;This &lt;a href="https://devzone.nordicsemi.com/question/114719/how-i-can-get-sensor-values-in-tera-term-without-connecting-to-any-mobile-app/"&gt;devzone case&lt;/a&gt; could be helpful. Also, &lt;a href="https://devzone.nordicsemi.com/question/114075/problem-in-getting-the-values-of-sensor/"&gt;this case&lt;/a&gt; might be helpful. It seems you need to establish a ble connection with your phone for example before any data will be visible in the terminal. Just to make sure, you are using SDK 11, right? Have you taken a look at the &amp;quot;How To Use&amp;quot; section in the Github link you posted in your question? Hope that helps!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112819?ContentTypeID=1</link><pubDate>Wed, 29 Nov 2017 17:36:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0c51945c-ec07-45ed-9149-9df813291077</guid><dc:creator>vam5104</dc:creator><description>&lt;p&gt;Also, when I&amp;#39;m trying to print the raw data values of acc_values.x, acc_values.y and acc_values.z, there is no output in tera term. This might be because of  nRF not able to access the raw data values.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112818?ContentTypeID=1</link><pubDate>Wed, 29 Nov 2017 15:46:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d957d709-4691-46f5-9536-b2030ede41f0</guid><dc:creator>vam5104</dc:creator><description>&lt;p&gt;I&amp;#39;m using nrf5-ble-uart-mpu-data-ready-interrupts example.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with MPU9250 and nrf52</title><link>https://devzone.nordicsemi.com/thread/112817?ContentTypeID=1</link><pubDate>Wed, 29 Nov 2017 14:55:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f221048-f349-4c84-ac85-d5d1a2972074</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;Which mpu example are you using? The &lt;code&gt;nrf5-ble-mpu-simple&lt;/code&gt; example?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>