<?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>Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/42212/using-mdbt42q-and-ble</link><description>Hello: 
 I&amp;#39;m relatively new and have been using 52832 DK for several months without any problems. It is a great product. As I gained experience, I&amp;#39;ve tried programming other boards (GT52832_A01) using a mini J-Link that I bought from Adafruit - again</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sat, 31 Oct 2020 13:58:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/42212/using-mdbt42q-and-ble" /><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/277912?ContentTypeID=1</link><pubDate>Sat, 31 Oct 2020 13:58:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:993736d6-7673-4b97-b405-e50ff634f9d5</guid><dc:creator>schosdas</dc:creator><description>&lt;p&gt;Hello, JimP.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s been a long time since you posted this article, but I have a question to ask you.&lt;br /&gt;I&amp;#39;m going to use MDBT42Q for the first time, too. When I use this module using SDK, can I do a BLE example of SDK without modifying the pin number of PCA10040?&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: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165774?ContentTypeID=1</link><pubDate>Tue, 15 Jan 2019 14:02:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3d1562bf-efd4-4b64-ab33-03201eee3594</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;Thank you all for your patience and help.&amp;nbsp; I&amp;#39;ll try your suggestions and let you know how it worked. &amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165730?ContentTypeID=1</link><pubDate>Tue, 15 Jan 2019 12:41:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e94e56d7-826f-470c-9784-6040607aef2e</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;The pack installer examples are very outdated and &lt;em&gt;should not be used&lt;/em&gt;. They are not compatible with SDK 15. CMSIS Pack have not been used to distribute the SDK for a long time, as it was deprecated with the release of SDK 10 (see &lt;a href="https://devzone.nordicsemi.com/b/blog/posts/deprecating-support-for-cmsis-pack-in-nrf5-sdk"&gt;Deprecating support for CMSIS Pack in nRF5 SDK&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;You will find an updated and compatible ble_app_blinky example in SDK 15 under &amp;lt;SDK&amp;gt;\examples\ble_peripheral\ble_app_blinky. In a nutshell: Unless you are working with legacy code which predates SDK 10 you should never use the pack installer to install or use any SDK component.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165722?ContentTypeID=1</link><pubDate>Tue, 15 Jan 2019 12:13:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cfab9d72-418f-4a33-a895-c2408555c0d6</guid><dc:creator>awneil</dc:creator><description>[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble/165716"]Tell me how to change to a custom board[/quote]
&lt;p&gt;The &amp;quot;official&amp;quot; way is to add to &lt;strong&gt;boards.h:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;:
:
#elif defined (BOARD_D52DK1)
  #include &amp;quot;d52_starterkit.h&amp;quot;
#elif defined (BOARD_ARDUINO_PRIMO)
  #include &amp;quot;arduino_primo.h&amp;quot;
#elif defined (CUSTOM_BOARD_INC)
  #include STRINGIFY(CUSTOM_BOARD_INC.h)
#elif defined(BOARD_TOM)
  #include &amp;quot;tom.h&amp;quot;
#elif defined(BOARD_DICK)
  #include &amp;quot;dick.h&amp;quot;
#elif defined(BOARD_HARRY)
  #include &amp;quot;harry.h&amp;quot;
#elif defined(BOARD_CUSTOM)
  #include &amp;quot;custom_board.h&amp;quot;
#else
#error &amp;quot;Board is not defined&amp;quot;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Take, say, your DK board header and use that as the basis for creating your custom one.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk52.v0.9.0%2Fsdk_for_custom_boards.html"&gt;infocenter.nordicsemi.com/index.jsp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/18910/supporting-a-custom-board-with-nrf5-sdk-examples"&gt;devzone.nordicsemi.com/.../supporting-a-custom-board-with-nrf5-sdk-examples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Or, for a quick check, just hack the DK file!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble/165716"]the example using the SOFTDEVICE_HANDLER works when you change the clock, but the UART example doesn&amp;#39;t[/quote]
&lt;p&gt;So step through the code in each case, and see where they diverge?&lt;/p&gt;
&lt;p&gt;Because stepping &amp;amp; breakpoints are likely to crash the SoftDevice, you may need to look into Monitor Mode Debugging:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/b/blog/posts/monitor-mode-debugging---revolutionize-the-way-you-debug-ble-applications"&gt;https://devzone.nordicsemi.com/b/blog/posts/monitor-mode-debugging---revolutionize-the-way-you-debug-ble-applications&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://github.com/NordicPlayground/j-link-monitoring-mode-debugging/#monitor-mode-debugging-in-keil-%C2%B5vision5-and-segger-embedded-studio"&gt;https://github.com/NordicPlayground/j-link-monitoring-mode-debugging/#monitor-mode-debugging-in-keil-%C2%B5vision5-and-segger-embedded-studio&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;and/or instrument the code with RTT or whatever ...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165716?ContentTypeID=1</link><pubDate>Tue, 15 Jan 2019 11:57:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f56ae54e-083c-42fc-ba3a-da0939e8df1f</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;That&amp;#39;s great.&amp;nbsp; I&amp;#39;m using nRF5_SDK_15.0.0_a53641a.&amp;nbsp; But the example is from the pack installer.&lt;/p&gt;
&lt;p&gt;Go to pack installer and under Nordic select nRF52832 on left side.&amp;nbsp; On right side click on Examples tab.&lt;/p&gt;
&lt;p&gt;Go down to &amp;quot;Experimental_ble_app_blinky_s132_pca10040&amp;quot; and copy to a folder.&amp;nbsp; Keil will open with the example loaded and you should be able to make the clock change (SOFTDEVICE_HANDLER) without problem.&amp;nbsp; You will need to load the nRF_blinky app on your phone to test.&lt;/p&gt;
&lt;p&gt;Tell me how to change to a custom board so I can try that.&amp;nbsp; What board should I put into the header?&lt;/p&gt;
&lt;p&gt;The thing I find interesting is that the example using the SOFTDEVICE_HANDLER works when you change the clock, but the UART example doesn&amp;#39;t after making the same changes to the config file.&amp;nbsp; I&amp;#39;m sure it must be something simple but haven&amp;#39;t figured it out yet.&lt;/p&gt;
&lt;p&gt;Thank you for continuing to work on this - much appreciated.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165616?ContentTypeID=1</link><pubDate>Tue, 15 Jan 2019 02:16:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2f21003f-4844-4136-b51b-af08b434b846</guid><dc:creator>etx</dc:creator><description>&lt;p&gt;I got mine going on the MDBT42Q, i think it was an issue with the default pca10040 board header. After switching to a custom board definition it&amp;#39;s working.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;d love to try loading the same example you are to help but I cannot find that example. I&amp;#39;m using&amp;nbsp;nRF5_SDK_15.2.0_9412b96.zip and building with armgcc for my application. Let me know.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165540?ContentTypeID=1</link><pubDate>Mon, 14 Jan 2019 15:22:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5c0e464a-0826-41d5-b7f3-16bbb8265ccb</guid><dc:creator>etx</dc:creator><description>&lt;p&gt;He is rude and looking at his post history he has that tone with everyone. I&amp;#39;ll just switch to another platform if that is how this community is run.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165510?ContentTypeID=1</link><pubDate>Mon, 14 Jan 2019 14:30:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1881992a-1ef2-4b5c-9977-8ff84f0b3f03</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;here is what I&amp;#39;ve learned.&lt;/p&gt;
&lt;p&gt;From the pack installer load the &amp;quot;experimental_ble_app_blinky_s132_pca10040&amp;quot; example.&lt;/p&gt;
&lt;p&gt;connect the MDBT42Q and erase the chip with nRFgo Studio.&lt;/p&gt;
&lt;p&gt;Load the Softdevice.&lt;/p&gt;
&lt;p&gt;In the program comment out //SOFTDEVICE_HANDLER(NRF_CLOCK_LFCLKSCR_XTAL_20_PPM, false);&lt;/p&gt;
&lt;p&gt;replace with :&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;SOFTDEVICE_HANDLER(NRF_CLOCK_LFCLKSCR_RC_250_PPM_250MS_CALIBRATION, false);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;load the program.&amp;nbsp; You should be able to connect by running the nRF Blinky app on your phone.&amp;nbsp; The LED on/of will toggle pin 17 and if you ground pin 13 you should see the button pressed/released toggle on the phone.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;There is still a problem with UART programs - they don&amp;#39;t use SOFTDEVICE_HANDLER.&amp;nbsp; What is the difference between using SOFTDEVICE_HANDLER and the way connection is managed with UART program?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165350?ContentTypeID=1</link><pubDate>Mon, 14 Jan 2019 07:58:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2ab391d4-1b37-40cb-8c0d-18bc0e04bca2</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Please keep a civil tone. &lt;a href="https://devzone.nordicsemi.com/members/awneil"&gt;awneil&lt;/a&gt;&amp;#39;s questions and suggestions make full sense.&lt;/p&gt;
&lt;p&gt;And to sum up: The only relevant difference between the&amp;nbsp;52832 DK and the&amp;nbsp;MDBT42Q module is that the DK has a 32 kHz crystal and the module does not. So as long as you remember to configure the SoftDevice to use the internal 32 kHz RC instead of the non-existing 32 kHz crystal oscillator everything should work as on the DK.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165316?ContentTypeID=1</link><pubDate>Sun, 13 Jan 2019 13:20:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1b205be7-c953-4886-960d-350a0a991a08</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;EXT:&lt;/p&gt;
&lt;p&gt;I had the exact same experience.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using version 15 of SDK also.&amp;nbsp; I&amp;#39;ve noticed a few differences in the code depending on the example&amp;nbsp; you start with and where you get the example code.&amp;nbsp; Some code has SOFT_DEVICE_HANDLER but not all.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m planning to test a few variations later today and will post exactly the version I start with, changes I make, and results. &amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165303?ContentTypeID=1</link><pubDate>Sat, 12 Jan 2019 22:06:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c4f5dfa9-288f-4fcd-9706-f32cb776a6b4</guid><dc:creator>etx</dc:creator><description>&lt;p&gt;Thanks for posting, glad you got it going!&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll double check my connections but the NRF52-DK seems to be flashing the MDBT42Q with the application and SD without any errors. I&amp;#39;m not connecting the reset pin, is that required?&lt;/p&gt;
&lt;p&gt;You much be using an older SDK, I don&amp;#39;t see that macro (&lt;span&gt;SOFTDEVICE_HANDLER_INIT&lt;/span&gt;) in version 15 of the SDK which is what I&amp;#39;m using. But I have tried setting the equivalent defines in the sdk_config.h so it should equate to the same settings for the clock. Still no love... I&amp;#39;ll keep trying.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I should add, like you the examples that don&amp;#39;t use the SD work fine. Blinky for example runs fine as I made a board file for the MDBT42Q with proper pin configurations.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165301?ContentTypeID=1</link><pubDate>Sat, 12 Jan 2019 21:32:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1c868aff-6a10-4086-9980-2e8c0a3dcd2b</guid><dc:creator>etx</dc:creator><description>&lt;p&gt;Thank &lt;strong&gt;you &lt;/strong&gt;for bringing zero value to this thread.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I did everything the OP posted before I found this thread. That&amp;#39;s why I posted to see if he had come up with anything.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Yes.&lt;/p&gt;
&lt;p&gt;Yes.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re not going to be constructive and act like a neckbeard please just move along.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165299?ContentTypeID=1</link><pubDate>Sat, 12 Jan 2019 15:10:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:955436e5-5752-4cb1-8fad-26308601dabe</guid><dc:creator>awneil</dc:creator><description>[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble/165298"]Use the debugger on SDK board instead of the mini JLink I have been using.&amp;nbsp; I don&amp;#39;t understand why this worked - but it did.[/quote]
&lt;p&gt;You&amp;#39;d need to take that up with Adafruit.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165298?ContentTypeID=1</link><pubDate>Sat, 12 Jan 2019 15:02:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7b8b2840-d3e2-4b0c-b76c-de94099c6d59</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;I haven&amp;#39;t tested this extensively but I&amp;#39;m now able to communicate with the MDBT42Q via BLE.&amp;nbsp; It involved 2 steps.&lt;/p&gt;
&lt;p&gt;1. &amp;nbsp; you need to change the clock source in the ble_stack_init function (or wherever the soft device handler is located) as follows:&lt;/p&gt;
&lt;p&gt;change: &amp;nbsp;&lt;/p&gt;
&lt;p&gt;SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_XTAL_20_PPM, false);&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;to:&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_RC_250_PPM_500MS_CALIBRATION, false);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;2.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;Use the debugger on SDK board instead of the mini JLink I have been using.&amp;nbsp; I don&amp;#39;t understand why this worked - but it did.&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;I made an 8 pin connector for the 8 pins next to the PCA10040.&amp;nbsp; VDD and VTG are connected to SDK VDD 3.3 V supply.&amp;nbsp; SWDIO connect to MDBT Module SWDIO (pin 37).&amp;nbsp; SWDCLK to MDBT Module SWDCLK (Pin 36) and Reset to MDBT Module reset (Pin 35).&amp;nbsp; SWO not connected. GND detect connected to common ground on both SDK board and Module.&amp;nbsp; In my setup the module is connected to separate 3.3v supply with common ground.&amp;nbsp; VDD nRF is not connected.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;Since making those changes I&amp;#39;ve been able to load programs on the SDK board and test them and then connect the MDBT module (via the 8 pin connector) and load the same softdevice and program.&amp;nbsp; The Module then runs the program the same as the SDK board.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;I&amp;#39;ve tested the BLE_blinky program and that works on MDBT the same as the SDK board&amp;nbsp; using nRF Blinky app on android phone. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165283?ContentTypeID=1</link><pubDate>Sat, 12 Jan 2019 10:37:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7bdc31d1-10d2-4721-b4b5-28eff84ac42f</guid><dc:creator>awneil</dc:creator><description>[quote userid="76429" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble/165275"]I&amp;#39;m having the same issue. [/quote]
&lt;p&gt;How do you know it&amp;#39;s the &lt;em&gt;&lt;strong&gt;same&lt;/strong&gt;&lt;/em&gt; issue?&lt;/p&gt;
&lt;p&gt;What debugging have &lt;em&gt;&lt;strong&gt;you&lt;/strong&gt; &lt;/em&gt;done to&amp;nbsp;find where the problem is ?&lt;/p&gt;
&lt;p&gt;Have you programmed the SoftDevice?&lt;/p&gt;
&lt;p&gt;Have you tested with an unmodified Nordic example?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/165275?ContentTypeID=1</link><pubDate>Sat, 12 Jan 2019 02:55:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fcae812e-c6e9-4a01-8981-b51bf2682bdf</guid><dc:creator>etx</dc:creator><description>&lt;p&gt;I&amp;#39;m having the same issue. Code runs and works well on the PCA10040 but I&amp;#39;d like to flash it to a MDBT42Q. I also tried switching to RC clock but it&amp;#39;d not working out.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Please post if you find a fix. Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/164629?ContentTypeID=1</link><pubDate>Wed, 09 Jan 2019 08:26:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:322f7970-0e52-41fd-867d-c42b90c1b254</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;I see. Did you remember to flash the SoftDevice as well as the application? If so yes and it still does not work, have you done some debugging to see what is happening on the target?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/164549?ContentTypeID=1</link><pubDate>Tue, 08 Jan 2019 14:32:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e31bb903-c8f9-44b8-b922-d930b07e79f5</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;Thank you Einar. Based on you comment - In SDK_CONFIG -&amp;nbsp; I set NRF_SDH_CLOCK_LF_SRC 0&amp;nbsp; //set to RC and NRF_SDH_CLOCK_LF_ACCURACY 1 // set tp 500 ppm - per waring&lt;/p&gt;
&lt;p&gt;but still can&amp;#39;t connect to the module.&amp;nbsp; I must still be missing something.&amp;nbsp; Any other suggestions?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks for your help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/164488?ContentTypeID=1</link><pubDate>Tue, 08 Jan 2019 10:28:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c807870b-8a20-40c8-b1b0-09ca04e69562</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Essentially this is just a nRF52832 module, so I recommend you use the normal nRF5 SDK (latest is 15.2)&amp;nbsp;instead of featherboard (or other) stuff. The module includes the 32 MHz crystal, but there is no 32 kHz crystal (optional). Note that the nRF SDK examples assume that the crystal is present, so you have to adapt the SoftDevice configuration to use the internal RC instead. Other than that, you should expect any SDK examples to work out of the box.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/164340?ContentTypeID=1</link><pubDate>Mon, 07 Jan 2019 15:55:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b0cd1c2e-f6f3-4cb9-835f-9df1164e2568</guid><dc:creator>JimP</dc:creator><description>&lt;p&gt;Yes.&amp;nbsp; I&amp;#39;m using the module you show in the link.&amp;nbsp; Yes - I&amp;#39;m using Keil as IDE - supplemented with nRFgo studio.&lt;/p&gt;
&lt;p&gt;I haven&amp;#39;t configured to use internal oscillator.&amp;nbsp; How would I do that?&lt;/p&gt;
&lt;p&gt;The featherboard comes with Arduino IDE.&amp;nbsp; There must be a way to convert for Keil but I don&amp;#39;t know how to do that.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you for your help&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using MDBT42Q and BLE</title><link>https://devzone.nordicsemi.com/thread/164325?ContentTypeID=1</link><pubDate>Mon, 07 Jan 2019 15:07:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7e74857d-190c-4b93-9af2-72c3cb1f81e7</guid><dc:creator>awneil</dc:creator><description>[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble"]MDBT42Q modules from Mouser (they are made by Seeed Studios)[/quote]
&lt;p&gt;You mean these:&amp;nbsp;&lt;a href="https://www.mouser.co.uk/ProductDetail/Seeed-Studio/317030213?qs=sGAEpiMZZMs1xdPSgahjwiL2lJlP6L5V96Mk9IiRNC0%3d"&gt;https://www.mouser.co.uk/ProductDetail/Seeed-Studio/317030213?qs=sGAEpiMZZMs1xdPSgahjwiL2lJlP6L5V96Mk9IiRNC0%3d&lt;/a&gt;&amp;nbsp;?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble"]The datasheet for the MDBT42Q basically says that you don&amp;#39;t need any external circuitry to make the module work, so it may not be a clock problem - but I&amp;#39;m not sure[/quote]
&lt;p&gt;Probably means that you have to configure it to use the internal oscillator - have you done that?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble"] I believe this is the same module used by Adafruit on their Featherboard 52832[/quote]
&lt;p&gt;Would be a good idea to get an&amp;nbsp;&lt;span&gt;Adafruit&amp;nbsp; Featherboard 52832 - then you&amp;#39;d at least have a know-good hardware&amp;nbsp; platform to start with ...&lt;/span&gt;&lt;/p&gt;
[quote userid="71102" url="~/f/nordic-q-a/42212/using-mdbt42q-and-ble"]There is a warning that there is a 32Kb limit on evaluation in debug[/quote]
&lt;p&gt;&lt;span&gt;Are you using Keil, then?&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Segger Embedded Studio (SES) is free &amp;amp; unlimited &lt;em&gt;for use with Nordic ARM-based SOCs&lt;/em&gt; ...&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>