<?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>Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14875/connecting-to-only-one-central-how-to-detailed</link><description>Hi, i know this question has been ask before but, i was reading and readind and i could find a way to do it. I got the theory but when i&amp;#39;m going to implement it in my code i get confused. 
 Starting by symple, i have 2 devices, one of this as central</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 13 Jul 2016 08:24:32 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14875/connecting-to-only-one-central-how-to-detailed" /><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56802?ContentTypeID=1</link><pubDate>Wed, 13 Jul 2016 08:24:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:696b081a-eecb-4409-81db-27fb0549ec3b</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: thanks for the nice words. I&amp;#39;m happy to help :)  If I answered your question please mark the answer as accepted (the checked button)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56801?ContentTypeID=1</link><pubDate>Wed, 13 Jul 2016 07:47:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:37da1e05-4e94-409a-be2c-c87b52778840</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;@HungBui: well, it&amp;#39;s ok, thanks a lot for answer all my question, it was very usefull, i know some of them was repetitive. Congratulations to the nordic support team, your job is well done in this forum,&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56797?ContentTypeID=1</link><pubDate>Tue, 12 Jul 2016 10:34:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6a6b174d-1f2b-47bc-a966-52d64d844c37</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: Yes you can use NUS. If you have new question that&amp;#39;s not related to the original question, please create a new case.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56796?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2016 15:18:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3a32035d-5f98-451d-87ed-3a81965af255</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;ok i got it.. what do you recommend to send data once a connection has established?&lt;/p&gt;
&lt;p&gt;For e.g: i need to send some bytes trough BLE once the devices are connect. NUS service??&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56795?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2016 13:42:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce51c80b-6c59-4960-9553-b219e70272d2</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: No, you don&amp;#39;t have to pay if you use BLE_GAP_ADDR_TYPE_RANDOM_STATIC, but according to the spec, the address should be generated randomly. You can use any tool to generate the random number, for example &lt;a href="http://www.miniwebtool.com/mac-address-generator/"&gt;this&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56794?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2016 12:57:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d839fac5-ae20-496e-960c-eac79706cf25</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;okok.. look what i have done..&lt;/p&gt;
&lt;p&gt;Central: i set my own address to the device but as  &amp;quot;random static address&amp;quot; .&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ble_gap_addr_t addr ={BLE_GAP_ADDR_TYPE_RANDOM_STATIC,{0xAD,0x16,0xBC,0xCA,0x30,0xE9}} ;
err_code = sd_ble_gap_address_set(BLE_GAP_ADDR_CYCLE_MODE_NONE, &amp;amp;addr);
APP_ERROR_CHECK(err_code);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Peripheral: i advertise with whitelist, and add an specific address to my whitelist.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ble_gap_addr_t   * p_whitelist_addr[1];
ble_gap_addr_t        whitelist_addr={BLE_GAP_ADDR_TYPE_RANDOM_STATIC,{0xAD,0x16,0xBC,0xCA,0x30,0xE9}} ;
whitelist.pp_addrs   =  p_whitelist_addr;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;with this, the system works as i want to.. now, you mentioned &amp;quot;generated randomly&amp;quot;, if i use an address&amp;#39;s type: BLE_GAP_ADDR_TYPE_RANDOM_STATIC, and i set my own address, do i have to pay for that ?? i&amp;#39;m talking about production mode..&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56799?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2016 12:15:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ac81567f-d19a-4a98-a35c-259e903dd1da</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: No, the DFU is just an example, you don&amp;#39;t have to increase address.&lt;/p&gt;
&lt;p&gt;If you use random static address, you don&amp;#39;t need to register and pay for your public address. You just need to generate it randomly, not 01:02:03:04:05:06 :) .&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56798?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2016 09:35:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:beee5025-5331-4f96-9c33-2e6d5d650ec6</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;@Hungbui: you mean that, when we will want to sell this product, we must pay for a own public address??&lt;/p&gt;
&lt;p&gt;I don`t want to implement DFU yet, so i don&amp;#39;t need  to increase the address by one, do i?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56800?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2016 07:18:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2c88c3e6-261d-4c9f-9de1-4beaf2959d92</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: You can set the address to anything you want, for testing purpose. For production, you should avoid using the public addresses domain that already claimed by other companies.
Regarding the reason we change the address in the DFU example, please have a look at question D &lt;a href="https://devzone.nordicsemi.com/blogs/685/common-faq-on-dfu/"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56790?ContentTypeID=1</link><pubDate>Fri, 08 Jul 2016 15:06:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c06df7eb-7555-40c3-80a1-da454be144c3</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;ok i found it..&lt;/p&gt;
&lt;p&gt;this is the code..&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ble_gap_addr_t addr;

        err_code = sd_ble_gap_address_get(&amp;amp;addr);
        APP_ERROR_CHECK(err_code);

        // Increase the BLE address by one when advertising openly.
        addr.addr[0] += 1;

        err_code = sd_ble_gap_address_set(BLE_GAP_ADDR_CYCLE_MODE_NONE, &amp;amp;addr);
        APP_ERROR_CHECK(err_code);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;instead of get the actual address with sd_ble_gap_address_get(&amp;amp;addr), i want to set my own address for example: {01:02:03:04:05:06} is it possible? and how?&lt;/p&gt;
&lt;p&gt;and why they increase the address by one?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56789?ContentTypeID=1</link><pubDate>Fri, 08 Jul 2016 14:00:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1e83610d-881a-49c4-ab29-7c8a0892f827</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: Please call sd_ble_gap_address_set() to write the address. You can call this at any time after you enable the softdevice.
To read the current address, you call sd_ble_gap_address_get().
Please have  a look at function dfu_transport_update_start() in dfu_transport_ble.c file  in the SDK \components\libraries\bootloader_dfu to see an example of using them.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56788?ContentTypeID=1</link><pubDate>Fri, 08 Jul 2016 13:38:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:280bbdba-0147-497b-9b04-ac5f3e57ac8e</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;i&amp;#39;m working with nrf52832&lt;/p&gt;
&lt;p&gt;but i want to set my own device address??how i can do it?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56791?ContentTypeID=1</link><pubDate>Fri, 08 Jul 2016 11:52:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:43c5698d-476e-436c-a890-f515996b9c1e</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: Which central device are you using ? Nordic nRF5 chip by default don&amp;#39;t change address.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56793?ContentTypeID=1</link><pubDate>Thu, 07 Jul 2016 14:18:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f2cab8d2-2ea7-4f37-a76a-101b82e00ad9</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;@hungbui: finally i found it, the problem was the endiannes... i found to connect my peripheral with one specific central...&lt;/p&gt;
&lt;p&gt;Now, i think my central device is running  with a random address because it change sometime... you told me that i can set a static address in my central with sd_ble_gap_address_set() but, where i have to do that?? in the advetising_init()???&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56792?ContentTypeID=1</link><pubDate>Thu, 07 Jul 2016 13:31:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62c54e77-8679-44d9-a4ad-78b50f718f0c</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: if you want to add more detail about your question, please edit the question. Don&amp;#39;t add it as an answer.
It could be the endianess was wrong, you could try to set the direct address /or whitelist in the advertiser to&lt;/p&gt;
&lt;p&gt;{0x48,0xAD,0x68,0x89,0xA5,0x80};&lt;/p&gt;
&lt;p&gt;You can try to capture a sniffer trace, we can see what is in the advertising packet.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56787?ContentTypeID=1</link><pubDate>Thu, 07 Jul 2016 10:54:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6057276b-25f6-40b9-a9a9-5ffb91a0e60e</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;@HungBui: i think i had my code ready, but when the central tries to connect, it gets disconnect..&lt;/p&gt;
&lt;p&gt;This is my central device address:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/device-Address.png" alt="image description" /&gt;&lt;/p&gt;
&lt;p&gt;this is my function start_advertising() in main.c&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/**@brief Function for starting advertising.
 */
static void advertising_start(void)
{
    uint32_t             err_code;
ble_gap_adv_params_t adv_params;
ble_gap_whitelist_t  whitelist;
ble_gap_addr_t   * p_whitelist_addr[1];
ble_gap_addr_t        whitelist_addr={BLE_GAP_ADDR_TYPE_RANDOM_STATIC,{0x80,0xA5,0x89,0x68,0xAD,0x48}} ;
uint8_t addr[6] = {0x80,0xA5,0x89,0x68,0xAD,0x48};  
uint8_t adv_data[15] = {0x07,0x09,0x4E,0x6F,0x72,0x64,0x69,0x63,0x02,0x01,0x04,0x03,0x03,0x0F,0x18};
uint8_t adv_data_length = 15;

//Setting up the advertising data with scan response data = Null
err_code = sd_ble_gap_adv_data_set(adv_data, adv_data_length, NULL, NULL);    

//Configure the advertising parameter and whitelist
memset(&amp;amp;adv_params, 0, sizeof(adv_params));
adv_params.type        = BLE_GAP_ADV_TYPE_ADV_IND;
adv_params.p_peer_addr = NULL;
adv_params.interval    = 64;
adv_params.timeout     = 180;
p_whitelist_addr[0] = &amp;amp;whitelist_addr;
whitelist.addr_count = 1;
whitelist.pp_addrs   =  p_whitelist_addr;
whitelist.pp_irks = NULL;
whitelist.irk_count =0;
adv_params.fp          = BLE_GAP_ADV_FP_FILTER_CONNREQ;
adv_params.p_whitelist = &amp;amp;whitelist;
err_code = sd_ble_gap_adv_start(&amp;amp;adv_params);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and this is my main.c&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/**@brief Function for application main entry.
 */
int main(void)
{
	  uint32_t err_code;
	  bool erase_bonds;
		configurar_puerto();
	
//	 leds_init();
//    timers_init();
	
	  // inicializo el timer para mostrar el blinking del advertoising
	  APP_TIMER_INIT(APP_TIMER_PRESCALER, APP_TIMER_OP_QUEUE_SIZE, false);
    err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
    APP_ERROR_CHECK(err_code);
	
	  
    buttons_init();
//	  nrf_delay_ms(50);
		ble_stack_init();
	
    device_manager_init(erase_bonds);
	  gap_params_init();
    services_init();
    advertising_init();
	  conn_params_init();
	
	// Empiezo el advertizing
//	  err_code = ble_advertising_start(BLE_ADV_MODE_FAST);
//    APP_ERROR_CHECK(err_code);
    advertising_start();
	
	// Espero un evento
    for (;;)
    {
        power_manage();
    }
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;What it could happening?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56786?ContentTypeID=1</link><pubDate>Wed, 06 Jul 2016 14:12:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fd92ac4f-df7f-4b23-b080-9e0bfd0c0fe5</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: it&amp;#39;s the DEVICE_MANAGER_MAX_BONDS you need to modify to 1.&lt;/p&gt;
&lt;p&gt;Also make sure you always advertise with whitelist (BLE_FAST_ADV_WHITELIST) after you have the address /IRK. I suggest you to get familiar to our example in the SDK, for example the proximity example, where whitelist is used.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56785?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 12:58:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:98e234a1-5c3e-4b02-a353-483c5b7fe81c</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;Another question... i was reading about peer and device manager. Peer manager is on experimental, so i will use device manager.&lt;/p&gt;
&lt;p&gt;you write above that i can use whitelist, i limit the number of peer devices that i want to store on my whitelist, this way if i limit to only 1, the unique device that could connect to my peripheral will be the first one.. How i can set the maximun number of peer device?where?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56784?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 11:36:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:78c6eac8-79d6-45d8-9421-d59aec757505</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;what i am doing... in the central i am looking the specific uuid service with is_uiid_present() and it is ok, the central only connect with specific peripheral. In the peripheral i am advertising with the specific peer address, but how i change the the device address in the central in order to match with my advertising??? you said  sd_ble_gap_address_set() but where? in main???&lt;/p&gt;
&lt;p&gt;but now&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56783?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 11:33:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:14191442-e51e-4d76-a8fd-30588400a04b</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;but sd_ble_gap_address_set() in main???&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56782?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 10:12:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c66d8097-4c7f-4e53-9ca3-42e248037997</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: In the sniffer, if you click on a Connect request packet, you can find the address of the init device (Init address).&lt;/p&gt;
&lt;p&gt;To change the address of a nRF52 central, you can call sd_ble_gap_address_set().&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56781?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 09:23:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3cec8a8d-f80b-401e-ae70-200a5815a621</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;I&amp;#39;m using a nRF52 DK as central, and another nRF52 DK as peripheral.. but with sniffer i just only get the address of my peripheral not my central::&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56780?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 08:54:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:75f269f8-f30c-4e4c-ae94-36738203e2cc</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: You need to find your own central device address. You can use a &lt;a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF-Sniffer/(language)/eng-GB"&gt;sniffer&lt;/a&gt; for this. Which central are you testing with ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56779?ContentTypeID=1</link><pubDate>Tue, 05 Jul 2016 08:15:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e2120689-b76f-4efe-bf17-8f308f1a5224</guid><dc:creator>Antonio</dc:creator><description>&lt;p&gt;ok, Hung Bui , i saw your //ADDED lines in the code.. with this you set to only advertise to that especific peer address, now, how you do that but in the central device? i mean, how you set&lt;/p&gt;
&lt;p&gt;----&amp;gt; {ba:2d:f2:f5:ed:5c} as central&amp;#39;s peer address&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Connecting to only one central. How to? detailed</title><link>https://devzone.nordicsemi.com/thread/56778?ContentTypeID=1</link><pubDate>Mon, 04 Jul 2016 14:30:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6f18f365-5e72-4d5a-8813-1dec35cf7161</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;@Antonio: I just updated my answer with an example. Please make sure you add the correct address for your central. Otherwise you won&amp;#39;t be able to see anything when you scan. Not only the address (make sure the Endianness is correct)  but also the address type must match.&lt;/p&gt;
&lt;p&gt;Please look for &amp;quot;//ADDED&amp;quot; comment where the modifications are added. There are 2 place in main.c&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>