<?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>NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/83496/nrf-connect-app-and-nrf805</link><description>Hello, 
 I&amp;#39;m working with a NRF52840 DK and a module BLE nrf805. 
 
 I&amp;#39;m programming thanks to the software SEGGER. 
 I have sent the blinky simple in my dev kit to test a simple thing. For about 2 months now, i have been working with the Module BLE 805</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 20 Jan 2022 11:35:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/83496/nrf-connect-app-and-nrf805" /><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/348679?ContentTypeID=1</link><pubDate>Thu, 20 Jan 2022 11:35:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2e250514-3d6e-498d-b056-a66fcefef42c</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;hello, i changed the info but it doesnt change nothing... the app is not seen after a few minutes by the phone and idont have a com with putty like i told you in the old post&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/348216?ContentTypeID=1</link><pubDate>Tue, 18 Jan 2022 09:46:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fabccb45-64bb-49d7-828e-bdd00d09c5a0</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;okay thank you some much. I&amp;#39;m going to try this&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/348178?ContentTypeID=1</link><pubDate>Tue, 18 Jan 2022 07:35:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7e154fed-c901-4c72-b21d-9aa4172d24fc</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not familiar with what board you&amp;#39;re using the nRF52805 module on, but do you know if it includes a LF crystal? If not, that could be why you only saw the device advertising for a brief moment before the application drifted without the correct clock configuration.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Can you try setting the following defines in your project&amp;#39;s sdk_config.h header file to these values and flash it onto your nRF52805 (using the Debug Out pin header).&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;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: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347930?ContentTypeID=1</link><pubDate>Mon, 17 Jan 2022 08:17:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1ca9bbc-0f75-422c-8b12-3e99695cea0c</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;Yes, i tried actually with the 2 &amp;quot; Debug in&amp;quot; and&amp;quot; debug out&amp;quot; and i don&amp;#39;t why i can send the program (blinky or peripheral uart) but i cant see any type of program in nrf connect application on my phone.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m kind of worried because last week it was working i saw the program ( on my nrf52840 and in my 805 ) i was happy because i was finally able to flash the code and see it in the app.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But after a few seconds, i couldnt see the program anymore it desapears on the phone, I told myself its okay im going to change the app duration in my code (main part) but since then impossible to see the flash of the code of the nrf805 (nrf52840 working more or less)&lt;/p&gt;
&lt;p&gt;i have the feeling that the fact to send this program is unstable on my nrf805&lt;/p&gt;
&lt;p&gt;Do you understand or do you have an explanation?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you in advance&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347722?ContentTypeID=1</link><pubDate>Fri, 14 Jan 2022 10:21:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6737aea3-4f3d-430a-bce0-b8b75d0cc1b3</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Thank you for the image, that explains what the issue is. The external nRF52805 board should be connected to the DEBUG OUT header (P19). DEBUG IN is dedicated to use an external programmer to program the on-board nRF52840. Please read the Debug Output section in the &lt;a href="https://infocenter.nordicsemi.com/pdf/nRF52840_DK_User_Guide_20201203.pdf"&gt;nRF52840 DK user guide&lt;/a&gt; for details.&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: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347618?ContentTypeID=1</link><pubDate>Thu, 13 Jan 2022 14:15:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0e6a88b3-9b6b-4bd5-8970-f958a5805a30</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/IMG_5F00_20220104_5F00_091311.jpg" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347613?ContentTypeID=1</link><pubDate>Thu, 13 Jan 2022 14:02:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:88ce745b-f8cb-423a-a43c-7dc6dd3cd864</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;yes, im using the example given by nordic periheral uart and with this service I&amp;#39;m using my phone to connect with puty and communicate. I&amp;#39;m giving you the main file.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/05406.main.c"&gt;devzone.nordicsemi.com/.../05406.main.c&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347611?ContentTypeID=1</link><pubDate>Thu, 13 Jan 2022 14:00:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1b0f647a-7eb4-453e-b692-03b5c4943437</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Just to make sure, your &amp;quot;app&amp;quot; is nRFConnect for Mobile, correct? Can you upload the main file here so I can take a look at it?&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: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347550?ContentTypeID=1</link><pubDate>Thu, 13 Jan 2022 10:22:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:07c2f874-6922-46ff-b181-61a10572183f</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;Hello, i tried to change the duration but i have a problem now I can&amp;#39;t see the device in my app even if I flash the code correctly do you have an explanation? I&amp;#39;m not going to make new tickets and I m going to solve those problems about nrf805 here.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/347080?ContentTypeID=1</link><pubDate>Tue, 11 Jan 2022 08:26:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a9363d1c-549e-43e8-ab21-26fa03aadd05</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The easiest way to make sure the device doesn&amp;#39;t go to sleep while advertising is to set APP_ADV_DURATION to 0 which will let the device advertise indefinitely. The APP_ADV_DURATION is called to set the advertising duration in the advertising_init(); function, and is forwarded to advertising_start(); which will last for that amount of time before moving to the idle_state_handle(); function in the main loop if the device doesn&amp;#39;t connect to a central device.&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: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/346974?ContentTypeID=1</link><pubDate>Mon, 10 Jan 2022 14:42:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0832a680-5a4a-4faf-9dad-41fe9d17abee</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;Hello again, no i didn&amp;#39;t disconnected the module.Okay, i would like to know how to not be in sleep mode. Where can i found this on the program? Thank you in advance.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I was talking avout the android app because i would like to communicate between my phone and my laptop.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank in advance for your help Simonr&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/346962?ContentTypeID=1</link><pubDate>Mon, 10 Jan 2022 14:00:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4815163a-6d32-4ffd-a19c-087d0587ccec</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
[quote user=""]The first time that i send my program i saw in my app my module and his correct mac adress. But now i dont know why i cant see the device anymore[/quote]
&lt;p&gt;Have you perhaps disconnected your nRF52805 module from the DK so that it is not powered anymore? Or have it been left on and advertising for so long (more than 3 minutes) that it has gone to sleep mode? If so you need to reset or power cycle it to start advertising again.&lt;/p&gt;
&lt;p&gt;Regarding the nRFConnect app, are you talking about the &lt;a href="https://www.nordicsemi.com/Products/Development-tools/nRF-Connect-for-mobile"&gt;nRFConnect for Android or iOS&lt;/a&gt; app or the&lt;a href="https://www.nordicsemi.com/Products/Development-tools/nRF-Connect-for-desktop"&gt; nRFConnect for Desktop BLE app&lt;/a&gt;? Either of them will indeed stop scanning after a set amount of time and you need to start scanning again.&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: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/346896?ContentTypeID=1</link><pubDate>Mon, 10 Jan 2022 10:55:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a3dc3df8-c93f-407a-bb49-366696316ce3</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;I have seen another problem : the problem is that my app ( that i took from nordic expire i cant seen the device after some minutes) could someone explain me why??&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF CONNECT APP AND NRF805</title><link>https://devzone.nordicsemi.com/thread/346854?ContentTypeID=1</link><pubDate>Mon, 10 Jan 2022 08:53:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:521817aa-1b85-4bd0-b04b-6926f9d01939</guid><dc:creator>lm</dc:creator><description>&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1641804826799v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>