<?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>public static ble address</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/20310/public-static-ble-address</link><description>Hi, 
 We bought a mac bd addr pool from IEEE
Where is the best way to store this mac adress during production ?
We guess the type will be: BLE_GAP_ADDR_TYPE_PUBLIC 
 Do you have example for the init with public adress ? Is there any drawback of using</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 09 Mar 2017 07:49:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/20310/public-static-ble-address" /><item><title>RE: public static ble address</title><link>https://devzone.nordicsemi.com/thread/79125?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2017 07:49:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0d3dfdd4-c854-4778-8744-5592f276d845</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Hi energy,&lt;/p&gt;
&lt;p&gt;You can store the address anywhere in the flash or in UICR region (there are CUSTOMER[xx] bytes available). However you will need to set the address manually through &lt;code&gt;sd_ble_gap_adddress_set&lt;/code&gt; call (if you use Nordic Soft Device) e.g. like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;// Local variables
uint32_t       err_code;
ble_gap_addr_t ble_gap_addr;

// ...

ble_gap_addr.addr_type = BLE_GAP_ADDR_TYPE_PUBLIC;
memcpy((uint8_t *)ble_gap_addr.addr, (uint8_t *)(NRF_UICR + 0x0080), BLE_GAP_ADDR_LEN);
err_code = sd_ble_gap_address_set(BLE_GAP_ADDR_CYCLE_MODE_NONE, &amp;amp;ble_gap_addr);
APP_ERROR_CHECK(err_code);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I don&amp;#39;t see any problem in using Public static address except privacy concerns.
Cheers Jan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>