<?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>mdbt42v-512kv2</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/122585/mdbt42v-512kv2</link><description>As you can see in the schematic, I have a custom board, and I’m uploading code to it via J-Link. I can control the pins, turn on an LED, and read a button without any problems. However, when I try to activate BLE, the program doesn’t work properly — the</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 30 Jun 2025 13:48:17 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/122585/mdbt42v-512kv2" /><item><title>RE: mdbt42v-512kv2</title><link>https://devzone.nordicsemi.com/thread/540883?ContentTypeID=1</link><pubDate>Mon, 30 Jun 2025 13:48:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6a1d23ff-5a59-47b7-afd8-fc6fccaf88b4</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;code&gt;-DNRF_SDH_CLOCK_LF_SRC=1&lt;/code&gt;&lt;/strong&gt;-DNRF_SDH_CLOCK_LF_SRC=1 points to you using the external clock as a clock source. To use the internal RC oscillator, this option must be set to 0, and you need to set&amp;nbsp;&lt;strong&gt;NRF_SDH_CLOCK_LF_RC_CTIV&lt;/strong&gt; =16,&amp;nbsp;&lt;strong&gt;NRF_SDH_CLOCK_LF_RC_TEMP_CTIV&lt;/strong&gt;=2,&amp;nbsp;&lt;strong&gt;NRF_SDH_CLOCK_LF_ACCURACY&lt;/strong&gt;=1 to enable calibration as well.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: mdbt42v-512kv2</title><link>https://devzone.nordicsemi.com/thread/540771?ContentTypeID=1</link><pubDate>Fri, 27 Jun 2025 18:29:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c3b635be-966f-4a9f-a3b6-84209a87374a</guid><dc:creator>cavus</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to control it via Arduino. To make it use the internal oscillator, I added the following line to the &lt;code data-start="112" data-end="124"&gt;boards.txt&lt;/code&gt; file:&lt;br data-start="130" data-end="133" /&gt; &lt;strong data-start="133" data-end="214"&gt;&lt;code data-start="135" data-end="212" data-is-only-node=""&gt;feather52832.build.extra_flags=-DARDUINO_FEATHER52 -DNRF_SDH_CLOCK_LF_SRC=1&lt;/code&gt;&lt;/strong&gt;&lt;br data-start="214" data-end="217" /&gt; However, it didn&amp;#39;t respond. Here&amp;#39;s the code I used:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;bluefruit.h&amp;gt;

#define LED_PIN 4  // P0.04

void setup() {
  pinMode(LED_PIN, OUTPUT);

  Bluefruit.begin();
  Bluefruit.setTxPower(4);    // (Optional) Set transmission power
  Bluefruit.setName(&amp;quot;MDBT42Q&amp;quot;); // Bluetooth cihaz ismi
  Bluefruit.Advertising.addFlags(BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE);
  Bluefruit.Advertising.addTxPower();
  Bluefruit.Advertising.addName();
  Bluefruit.Advertising.start(0);  // 0 = advertise forever

  delay(1000);  // Stabil başlatma i&amp;#231;in kısa bekleme
}

void loop() {
  digitalWrite(LED_PIN, HIGH);
  delay(2000);  // 2 saniye a&amp;#231;ık
  digitalWrite(LED_PIN, LOW);
  delay(2000);  // 2 saniye kapalı
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: mdbt42v-512kv2</title><link>https://devzone.nordicsemi.com/thread/540767?ContentTypeID=1</link><pubDate>Fri, 27 Jun 2025 17:29:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:45930c60-a6e8-4de6-8e32-676acb727237</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;The BTLE examples require the 32.768kHz crystal by default. You need to change the configuration in order to use the LFRC. Very often discussed here, should also be mentioned in the docs.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>