<?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>nRF52832 extended advertising</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/37802/nrf52832-extended-advertising</link><description>I downloaded the latest SDK(15.1), and how to advertising more infomation,more than 31 byte. 
 
 
 
 init.config.ble_adv_extended_enabled = true; 
 0&amp;gt; &amp;lt;error&amp;gt; app: ERROR 7 [NRF_ERROR_INVALID_PARAM] at ..\..\..\main.c:699 0&amp;gt; PC at: 0x00029363 0&amp;gt; &amp;lt;error</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 30 Aug 2018 08:43:31 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/37802/nrf52832-extended-advertising" /><item><title>RE: nRF52832 extended advertising</title><link>https://devzone.nordicsemi.com/thread/146442?ContentTypeID=1</link><pubDate>Thu, 30 Aug 2018 08:43:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eb1f0743-60e1-4b5d-a323-1aeb6adbc0c7</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;div&gt;I would take a look at the &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.1.0/ble_sdk_app_rsc.html?cp=4_0_0_4_1_2_22"&gt;running speed &amp;amp; cadence example&lt;/a&gt; from sdk 15.1 to see how advertising extensions are setup there. Specifically this function:&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;pre class="ui-code" data-mode="text"&gt;/**@brief Function for initializing the Advertising functionality.
*/
static void advertising_init(void)
{
    ret_code_t             err_code;
    ble_advertising_init_t init;

    memset(&amp;amp;init, 0, sizeof(init));

    init.advdata.name_type               = BLE_ADVDATA_FULL_NAME;
    init.advdata.include_appearance      = true;
    init.advdata.flags                   = BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE;
    init.advdata.uuids_complete.uuid_cnt = sizeof(m_adv_uuids) / sizeof(m_adv_uuids[0]);
    init.advdata.uuids_complete.p_uuids  = m_adv_uuids;

    init.config.ble_adv_fast_enabled     = true;
    init.config.ble_adv_fast_interval    = APP_ADV_INTERVAL;
    init.config.ble_adv_fast_timeout     = APP_ADV_DURATION;

    init.config.ble_adv_primary_phy      = BLE_GAP_PHY_1MBPS;
    init.config.ble_adv_secondary_phy    = BLE_GAP_PHY_2MBPS;
    init.config.ble_adv_extended_enabled = true;

    init.evt_handler = on_adv_evt;

    err_code = ble_advertising_init(&amp;amp;m_advertising, &amp;amp;init);
    APP_ERROR_CHECK(err_code);

    ble_advertising_conn_cfg_tag_set(&amp;amp;m_advertising, APP_BLE_CONN_CFG_TAG);
}&lt;/pre&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 extended advertising</title><link>https://devzone.nordicsemi.com/thread/145890?ContentTypeID=1</link><pubDate>Mon, 27 Aug 2018 10:31:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e43722cb-7de1-4eb4-a358-1057310e935e</guid><dc:creator>sch</dc:creator><description>&lt;p&gt;nRF5_SDK_15.1.0_a8c0c4d\examples\ble_peripheral\ble_app_uart&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 extended advertising</title><link>https://devzone.nordicsemi.com/thread/145842?ContentTypeID=1</link><pubDate>Mon, 27 Aug 2018 08:33:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:146044ff-5b0b-43a4-a87b-0f30f6b7972e</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;Which example are you currently looking at?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>