<?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>Questions about PCBs that do not work normally</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/99462/questions-about-pcbs-that-do-not-work-normally</link><description>hello, 
 
 I am testing by making a PCB with a circuit provided by Noridc. 
 I have a question because there is a part that behaves abnormally during the test. 
 
 **** Abnormal operation description 
 -&amp;gt; Normal operation ( Normal operation ) -&amp;gt; Power</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 10 May 2023 01:18:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/99462/questions-about-pcbs-that-do-not-work-normally" /><item><title>RE: Questions about PCBs that do not work normally</title><link>https://devzone.nordicsemi.com/thread/424684?ContentTypeID=1</link><pubDate>Wed, 10 May 2023 01:18:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:614d7dc4-aef1-49c4-a599-e904e478db43</guid><dc:creator>SHMoon</dc:creator><description>&lt;p&gt;hello,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have already changed to an internal RC oscillator and am using it.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;As I mentioned, reducing the advertising time..&lt;/p&gt;
&lt;p&gt;It is a state in which similar problems do not occur.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll do some more testing and get back to you if there are any issues.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;thank.&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;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questions about PCBs that do not work normally</title><link>https://devzone.nordicsemi.com/thread/424430?ContentTypeID=1</link><pubDate>Tue, 09 May 2023 07:35:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:946d4a3d-c8e9-4127-a5ea-5c57326ca149</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Thank you for clarifying!&lt;/p&gt;
&lt;p&gt;Have you changed your application configurations to use the internal RC oscillator in your ble_app_uart application? You need to set these configs in sdk_config.h to the following values:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;//==========================================================
// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_SRC  - SoftDevice clock source.

// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_SRC_RC
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_SRC_XTAL
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_SRC_SYNTH

#ifndef NRF_SDH_CLOCK_LF_SRC
#define NRF_SDH_CLOCK_LF_SRC 0
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_RC_CTIV - SoftDevice calibration timer interval.
#ifndef NRF_SDH_CLOCK_LF_RC_CTIV
#define NRF_SDH_CLOCK_LF_RC_CTIV 16
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_RC_TEMP_CTIV - SoftDevice calibration timer interval under constant temperature.
// &amp;lt;i&amp;gt; How often (in number of calibration intervals) the RC oscillator shall be calibrated
// &amp;lt;i&amp;gt;  if the temperature has not changed.

#ifndef NRF_SDH_CLOCK_LF_RC_TEMP_CTIV
#define NRF_SDH_CLOCK_LF_RC_TEMP_CTIV 2
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_ACCURACY  - External clock accuracy used in the LL to compute timing.

// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_ACCURACY_250_PPM
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_ACCURACY_500_PPM
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_ACCURACY_150_PPM
// &amp;lt;3=&amp;gt; NRF_CLOCK_LF_ACCURACY_100_PPM
// &amp;lt;4=&amp;gt; NRF_CLOCK_LF_ACCURACY_75_PPM
// &amp;lt;5=&amp;gt; NRF_CLOCK_LF_ACCURACY_50_PPM
// &amp;lt;6=&amp;gt; NRF_CLOCK_LF_ACCURACY_30_PPM
// &amp;lt;7=&amp;gt; NRF_CLOCK_LF_ACCURACY_20_PPM
// &amp;lt;8=&amp;gt; NRF_CLOCK_LF_ACCURACY_10_PPM
// &amp;lt;9=&amp;gt; NRF_CLOCK_LF_ACCURACY_5_PPM
// &amp;lt;10=&amp;gt; NRF_CLOCK_LF_ACCURACY_2_PPM
// &amp;lt;11=&amp;gt; NRF_CLOCK_LF_ACCURACY_1_PPM

#ifndef NRF_SDH_CLOCK_LF_ACCURACY
#define NRF_SDH_CLOCK_LF_ACCURACY 1
#endif&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;When connected to a debugger the clock calibration is not necessary, which explains why you&amp;#39;re able to connect when connected to a J-Link device.&lt;/p&gt;
&lt;p&gt;Regarding your advertising interval, the values you&amp;#39;ve set are very high 2500 equals to 1.5 seconds, while 7500 equals to advertising every ~4.7 seconds. Although both are within the BLE specification, it will be hard for a scanner to find and connect to an advertising device only advertising every 4.7 seconds.&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: Questions about PCBs that do not work normally</title><link>https://devzone.nordicsemi.com/thread/424395?ContentTypeID=1</link><pubDate>Tue, 09 May 2023 02:20:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8e9ca314-1be7-41d6-a74a-9f260549db65</guid><dc:creator>SHMoon</dc:creator><description>&lt;p&gt;hello,&lt;/p&gt;
&lt;p&gt;Thanks for the reply. As you said,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using the ble_app_uart example.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;1. Restatement of the problem Symptom&lt;/p&gt;
&lt;p&gt;1) Peripheral mode, but not connected to Central Symptom&lt;/p&gt;
&lt;p&gt;2) Uart communication ----- External uart to usb (com port) ---- PC terminal ---&amp;gt; Data not received&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(Check if the PC&amp;#39;s&amp;nbsp; &amp;nbsp; &amp;nbsp;Com port driver is normal)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;2. Operation when connecting J-Link to connector (physically only)&lt;/p&gt;
&lt;p&gt;- Physically plug in J-Link socket -&amp;gt; Connected to Central while receiving data from Terminal&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;3. Using 32.768 kHz Crystal&lt;/p&gt;
&lt;p&gt;- Using internal crystal&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;4. Usage circuit diagram&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1683598418498v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Additional doubts are&lt;/p&gt;
&lt;p&gt;- Advertising settings in the past :&amp;nbsp;&amp;nbsp;define APP_ADV_INTERVAL 2500&amp;nbsp;&amp;nbsp;/**&amp;lt; The advertising interval (in units of 0.625 ms. This value corresponds to 40 ms). */&lt;/p&gt;
&lt;p&gt;- Advertising setting when the problem occurs :&amp;nbsp;#define APP_ADV_INTERVAL 7500&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Perhaps, the advertising time was too long and did not stick While inserting the J-Link into the socket,&lt;/p&gt;
&lt;p&gt;I think that the nRF52 may have been reset and reattached...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Please review if there are any strange parts.&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: Questions about PCBs that do not work normally</title><link>https://devzone.nordicsemi.com/thread/424267?ContentTypeID=1</link><pubDate>Mon, 08 May 2023 12:22:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:152f261a-1829-485c-96e7-e214512707b6</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;1. Do you mean that it doesn&amp;#39;t connect automatically to the serial terminal the UART was connected to? How does the UART interface with the PC in your design? On the development kit it has a UART interface through a virtual COM port for example. Also, what serial terminal are you using on the computer side, and can you describe the &amp;quot;incomprehensible&amp;quot; behavior in detail?&lt;/p&gt;
&lt;p&gt;2. This makes it seem like you&amp;#39;re using the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/ble_sdk_app_nus_eval.html"&gt;ble_app_uart &lt;/a&gt;example project and not the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/uart_example.html"&gt;peripheral\UART example&lt;/a&gt;. Can you confirm which one you&amp;#39;re using? A reason why it would connect when connected to a J-Link device is either that it is now powered correctly or that its using a correctly calibrated 32.768 kHz crystal. Can you share some details on what 32.768kHz crystal your design is using.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Please also upload the schematics of&amp;nbsp;&lt;strong&gt;your&amp;nbsp;&lt;/strong&gt;design instead of just the reference circuitry from our PS.&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></channel></rss>