<?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>UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/37836/uart-non-connectable-advertisement</link><description>I am trying to broadcast a non-connectable advertisement (such as a beacon) while I am connected to a device that I am transferring data via TX. I am working with a nRF52840 on Segger Embedded Studio v3.4 with the nRF5_SDK_15 as the base for my code manipulation</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 16 Nov 2018 09:12:15 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/37836/uart-non-connectable-advertisement" /><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/157667?ContentTypeID=1</link><pubDate>Fri, 16 Nov 2018 09:12:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:90137748-d168-482c-9921-ca99871b1afd</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Sorry for the late reply. I have been out of office this week.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;First, I recommend that you do the app_timer_init() outside your main-loop, because in this case you will run app_timer_init() all the time, as long as you are connected, so it will stop and start all the time, and you will create timers just as often, and your app_timer_create() will return&amp;nbsp;NRF_ERROR_INVALID_STATE from the second time it is called.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;So move everything that you have inside if(connected == 1){} to before the for(;;)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;What you actually don&amp;#39;t do is to start the timer, using app_timer_start. This is also something you should do outside your main-loop. If not, you will just start it over and over.&lt;/p&gt;
&lt;p&gt;I suspect that the if(connected) part is something you want in your timeout handler. You should initialize your timer in your main() application, before the for (;;) loop, and you can start your timer in the&amp;nbsp;BLE_GAP_EVT_CONNECTED event in ble_evt_handler().&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I recommend that you look at the ble_app_hrs example, as this sets up different timers. You can see in the main() function, that it calls timers_init(),&amp;nbsp;application_timers_start().&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The m_heart_rate_timer_id is quite similar to what you are trying to achieve. As you can see, the timer_id is defined near the top of main.c, APP_TIMER_DEF(m_heart_rate_timer_id);&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If I were to tell you how to do it, it would be a copy paste of the main file from the ble_app_hrs example.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/156782?ContentTypeID=1</link><pubDate>Sun, 11 Nov 2018 16:07:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2ce98eea-d25b-47bb-a55d-490865013308</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/2703.ble_5F00_app_5F00_uart.zip"&gt;devzone.nordicsemi.com/.../2703.ble_5F00_app_5F00_uart.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/156781?ContentTypeID=1</link><pubDate>Sun, 11 Nov 2018 16:03:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bbe4bd18-d036-4642-9d81-25b664bedbe2</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;I found what you are referring to and I am able to pass in data properly. What I am having trouble with is being able to call uart_event_handle constantly because the use case is having the bluetooth device emit UART signals in a regular interval with the temp and weight information. I am able to trigger the uart_event_handle by creating a variable of type app_uart_evt_t and passing it into that function. I do this in the main loop, but there is not enough of a delay between each call to this function. My thoughts were to either sleep the thread for a certain period of time which I have had zero success, and I am also trying to create an app_timer to repeatedly call this function in a certain interval but not successfully able to do so. Was wondering if you could help me create this timer or if you could think of a better way. Here is my main loop so far:&lt;/p&gt;
&lt;pre&gt;for (;;)
    {   
        if(connected == 1) {
              
              
             // create timer
              ret_code_t err_code;
              err_code = app_timer_init();
              APP_ERROR_CHECK(err_code);
              
              // variables to pass into app_timer_create
              app_timer_id_t * timer_id = APP_TIMER_DEF(10);
              app_timer_mode_t * timer_mode = APP_TIMER_MODE_REPEATED;
              app_timer_timeout_handler_t * timer_timeout_handler;
              
              // variable to pass into uart_event_handle
              app_uart_evt_t * p_event;
              // triggers data to be sent over UART
              uart_event_handle(p_event);

              // 
              err_code = app_timer_create(timer_id,timer_mode, timer_timeout_handler);
              APP_ERROR_CHECK(err_code);
        }
        
        idle_state_handle();
    }&lt;br /&gt;&lt;br /&gt;But I&amp;#39;m getting a compiler error with the timer_id as I have no idea what to pass in. I also don&amp;#39;t think I&amp;#39;m setting the timer_mode variable properly, and I don&amp;#39;t know how I can set the timer_timeout_handler to call the part_event_handle function. I&amp;#39;ve also attached my source code.&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/156591?ContentTypeID=1</link><pubDate>Fri, 09 Nov 2018 07:53:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e9042074-8f6d-46c2-9479-313bd62ae107</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;look for ble_nus_data_send();&lt;/p&gt;
&lt;p&gt;It is used in the&amp;nbsp;uart_event_handle() in main.c in that example.&lt;/p&gt;
&lt;p&gt;You can use this function to send your data to the phone.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/156567?ContentTypeID=1</link><pubDate>Fri, 09 Nov 2018 04:10:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dbf92caf-2689-4862-a791-13fef2f773fe</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;So I figured out how to read the sensors using the Saadc example. Now the task that I&amp;#39;m faced with is to relay this data through UART ble_peripheral to my iPhone/Android device. I am using the UART tutorial on ble_peripheral but I&amp;#39;m having a difficult time trying to find out where I pass these values to be sent over UART.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/151351?ContentTypeID=1</link><pubDate>Wed, 03 Oct 2018 07:54:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5567cb4f-b8e9-4a2a-9ab6-8a200011b4f7</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;The reason for why there isn&amp;#39;t any tutorial for setting up sensors is because different sensors have different protocols. Some use UART, some use I2C, some use SPI, some are analogue (Like your weight sensor), some are something else (Like your Temp sensor. Not standardized).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The weight sensor uses changes the resistance depending on the weight, so you have to give it some voltage, and measure the voltage drop over the sensor. See the Saadc example on how to do this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The temp sensor uses a custom protocol. It is called 1-wire-bus. See the datasheet section 1-wire bus system. I don&amp;#39;t know what protocol it is, but it looks like a modified SPI or UART, using only one wire (in and output). You will have to experiment a bit with this one, or maybe you can find some tutorials (not from Nordic) on how to&amp;nbsp;use this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/151314?ContentTypeID=1</link><pubDate>Wed, 03 Oct 2018 02:19:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8a3f55ab-4d23-475b-a7a6-21716a7884c2</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;I don&amp;#39;t know what you mean by protocol. I&amp;#39;ve been going through the data sheets for both the temperature sensor and weight sensor, but neither says anything about protocols. There also aren&amp;#39;t any online tutorial for Segger in setting up sensors. I&amp;#39;m attaching links to both the data sheets for the sensors I&amp;#39;m using.&lt;/p&gt;
&lt;p&gt;Temp Sensor:&amp;nbsp;&lt;a href="http://cdn.sparkfun.com/datasheets/Sensors/Temp/DS18B20.pdf"&gt;http://cdn.sparkfun.com/datasheets/Sensors/Temp/DS18B20.pdf&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Weight Sensor:&amp;nbsp;&lt;a href="https://cdn-learn.adafruit.com/assets/assets/000/010/126/original/fsrguide.pdf"&gt;https://cdn-learn.adafruit.com/assets/assets/000/010/126/original/fsrguide.pdf&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/150169?ContentTypeID=1</link><pubDate>Tue, 25 Sep 2018 07:12:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6878fa4e-4b5e-4be2-84b4-7937552fcd14</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Have you found any datasheets for your sensor? You need to know what protocol they use in order to read the data from the sensors.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/150145?ContentTypeID=1</link><pubDate>Tue, 25 Sep 2018 02:35:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:01d157f0-e032-4940-8421-c6c0652668a2</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;I am using an fsr weight sensor (&lt;a href="https://www.mouser.com/ProductDetail/SparkFun/SEN-09376?qs=WyAARYrbSnZm3k2OB4XwnA%3D%3D&amp;amp;gclid=Cj0KCQjwlqLdBRCKARIsAPxTGaVJJHUxsem5voGhSz6SU448bj-TSC2OffI2mAEgGkMw_j5pOLybGMsaAjlQEALw_wcB"&gt;https://www.mouser.com/ProductDetail/SparkFun/SEN-09376?qs=WyAARYrbSnZm3k2OB4XwnA%3D%3D&amp;amp;gclid=Cj0KCQjwlqLdBRCKARIsAPxTGaVJJHUxsem5voGhSz6SU448bj-TSC2OffI2mAEgGkMw_j5pOLybGMsaAjlQEALw_wcB&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;and I am using a DS18B20 (&lt;a href="https://www.mouser.com/ProductDetail/SparkFun/SEN-11050?qs=WyAARYrbSnY0sq2HamgEvg%3D%3D&amp;amp;gclid=Cj0KCQjwlqLdBRCKARIsAPxTGaVBUMh3fjcHdQMuEvzNDSGc6LQwRu6e9y8JH7MUIWVe5jWGCddBblcaAtpOEALw_wcB"&gt;https://www.mouser.com/ProductDetail/SparkFun/SEN-11050?qs=WyAARYrbSnY0sq2HamgEvg%3D%3D&amp;amp;gclid=Cj0KCQjwlqLdBRCKARIsAPxTGaVBUMh3fjcHdQMuEvzNDSGc6LQwRu6e9y8JH7MUIWVe5jWGCddBblcaAtpOEALw_wcB&lt;/a&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/149935?ContentTypeID=1</link><pubDate>Mon, 24 Sep 2018 07:43:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ee455985-bed8-4108-8884-c72fb7c843e4</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;What protocol do your sensors use? SPI? UART? TWI/I2C?&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/149522?ContentTypeID=1</link><pubDate>Wed, 19 Sep 2018 21:47:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5454e59-1f7f-45eb-982d-02952e8038af</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;The problem is that I don&amp;#39;t know how to read the data from the sensors, and even if I were able to get this data, I don&amp;#39;t know how I could send this data over UART. I know the sensors are setup properly and the device is capable of doing this because I have successfully done this through the Arduino IDE.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/149147?ContentTypeID=1</link><pubDate>Tue, 18 Sep 2018 06:25:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a20d7563-68e0-4953-bd7b-6ab6fba9c054</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;And the problem is... ?&lt;/p&gt;
&lt;p&gt;Are you getting values from your sensor, which are transferred? You don&amp;#39;t want that? You want to process the sensor data before sending it? I am only guessing here. It would be easier if you describe the issue.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/149087?ContentTypeID=1</link><pubDate>Mon, 17 Sep 2018 14:55:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d833744-7fa8-4aca-bdc3-9eef6cd4efc0</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;I&amp;rsquo;ve read through the tutorial and performed it fine, but my problem is doing the transfer of data over rx from within the code. This is because I will have a weight and temp sensor connected to my nRF52 device and will be sending the data it is receiving to send over UART to the iPhone.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/149086?ContentTypeID=1</link><pubDate>Mon, 17 Sep 2018 14:54:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e6417d99-33fa-40fd-93c5-ed1212a9a51a</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;I&amp;rsquo;ve read through the tutorial and performed it fine, but my problem is doing the transfer of data over rx from within the code. This is because I will have a weight and temp sensor connected to my nRF52 device and will be sending the data it is receiving to send over UART to the iPhone.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148899?ContentTypeID=1</link><pubDate>Mon, 17 Sep 2018 06:27:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:013e20a0-adc0-480c-b638-fb55727c3206</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Look at the test guide for the ble_app_uart example:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v15.0.0%2Fble_sdk_app_nus_eval.html&amp;amp;anchor=project_uart_nus_eval_test"&gt;http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v15.0.0%2Fble_sdk_app_nus_eval.html&amp;amp;anchor=project_uart_nus_eval_test&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You can use a terminal, like Termite to send strings to the nRF. Then use nRF Toolbox or nRF Connect for mobile to receive the data. You need to enable notifications if you use nRF Connect for mobile to see the data. See the guide on how to do that.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148853?ContentTypeID=1</link><pubDate>Fri, 14 Sep 2018 14:55:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:28a30d6b-8cd7-4777-b5d1-8905654c36a6</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;Both. I know my sensor works as I have it setup via Arduino but I don&amp;rsquo;t know where I can access this data on the uart example. Once I get this data, how do I then send it through rx. I&amp;rsquo;ve been trying to send test strings such as &amp;ldquo;hello world&amp;rdquo; just to test this thing out but can&amp;rsquo;t seem to find where this data should be placed for it to be transferred over rx.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148837?ContentTypeID=1</link><pubDate>Fri, 14 Sep 2018 13:21:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9d82e84c-53c8-4c2b-b4c0-4a105cd80256</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Ok. So you need to be able to pick up the beacon advertising packs from another device than the mobile phone when you are connected, then?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regarding sending weight readings:&lt;/p&gt;
&lt;p&gt;Could you describe what the problem is? Do you have difficulties getting the readings from the sensor, or do you have problems sending them over the link?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148818?ContentTypeID=1</link><pubDate>Fri, 14 Sep 2018 12:16:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:42a3eefe-f067-4404-96dd-925976f5106c</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;Edvin,&lt;/p&gt;
&lt;p&gt;By being able to monitor and not range the beacon I&amp;rsquo;m referring to the ability of the device to only having the ability to monitor whether the beacon is in the particular region (monitor) as opposed to being able to also determine its exact distance. I&amp;rsquo;m also having trouble determining how to send data such as the weight readings that are being fed through the A1 port of the nRF device over uart (rx).&lt;/p&gt;
&lt;p&gt;-Hudson&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148728?ContentTypeID=1</link><pubDate>Fri, 14 Sep 2018 07:15:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cee08dfd-e3c8-4321-8315-d1cdf1dd26cc</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;I don&amp;#39;t quite understand what you mean with &amp;quot;monitor the beacon but not range it with the current situation&amp;quot;.&lt;/p&gt;
&lt;p&gt;It is possible to scan at the same time that you are connected, but nRF Connect for mobile does not do this at this point in time. What do you want your application to do?&lt;/p&gt;
&lt;p&gt;You advertise with the BLE uart service, and when you connect to it, you start advertising as a beacon. Is this new advertising because you want to measure the distance to the beacon?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148616?ContentTypeID=1</link><pubDate>Thu, 13 Sep 2018 12:11:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3c7d4c03-3d3b-42e0-befa-13ec1277f193</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;Edvin,&lt;/p&gt;
&lt;p&gt;The only issue with doing what you said is that I don&amp;rsquo;t have two phones, and the requirement for my project is for this to be done on one phone. Correct me if I&amp;rsquo;m wrong but I&amp;rsquo;ll be able to monitor the beacon but not range it with the current situation (using one phone) which is all I need to have happen.&lt;/p&gt;
&lt;p&gt;-Hudson&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148613?ContentTypeID=1</link><pubDate>Thu, 13 Sep 2018 12:06:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:79689d5a-fdda-4c51-96c6-b3b2ac3f7ba4</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Well. When you program a device with the application used in nRF Connect, it will overwrite everything that is already on there, so you need an extra DK or Dongle in order to use nRF Connect for Desktop.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;However, you shouldn&amp;#39;t need that. If you have two cellphones, this should be possible.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Program your DK with the application that you wrote, then open nRF Connect on both phones. Connect to the device with one phone, and after that start scanning with the other phone. You should see the beacon advertisements.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148610?ContentTypeID=1</link><pubDate>Thu, 13 Sep 2018 12:01:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b4c59915-fef2-49a1-a071-95743c97c455</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;Edvin,&lt;/p&gt;
&lt;p&gt;No it&amp;rsquo;s the same device I&amp;rsquo;ve been using.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-Hudson&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148519?ContentTypeID=1</link><pubDate>Thu, 13 Sep 2018 06:40:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a22fcb8b-7ad1-4463-82df-c63fb7da64f3</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Hudson,&lt;/p&gt;
&lt;p&gt;Just to clarify a couple of things. The device that you are trying to use with nRF Connect is not the same as the one you try to program your uart + beacon application to, right?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;And the device that you are using with nRF Connect, is that a nRF DK or nRF Dongle?&lt;/p&gt;
&lt;p&gt;-Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148507?ContentTypeID=1</link><pubDate>Thu, 13 Sep 2018 02:14:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9696229b-3059-4b12-8aa1-6464dd73c891</guid><dc:creator>hmcashan13</dc:creator><description>&lt;p&gt;Edvin,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m having trouble working with the nRF Connect application on my Mac. I have the bluetooth device connected to my Mac via J-Link and the error I am receiving is:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Error while setting up device 000801001102: No serial port available for device with serial number 000801001102&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;-Hudson&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UART + non-connectable advertisement</title><link>https://devzone.nordicsemi.com/thread/148415?ContentTypeID=1</link><pubDate>Wed, 12 Sep 2018 12:52:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:48caaae8-4a09-45e7-8a51-65a4c261fcf5</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Hudson,&lt;/p&gt;
&lt;p&gt;No. That is not what I meant. What I am trying to say is that the application that you sent is advertising as a beacon while it is in a connection.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>