<?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>Changing attribute value in main in SDK 6.1 in multilink peripheral example</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/6976/changing-attribute-value-in-main-in-sdk-6-1-in-multilink-peripheral-example</link><description>Hello, 
 with SDK8 I just used ble_gatts_value_t but this struct isn&amp;#39;t availabe in SDK 6.1 :(</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sat, 09 May 2015 12:50:26 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/6976/changing-attribute-value-in-main-in-sdk-6-1-in-multilink-peripheral-example" /><item><title>RE: Changing attribute value in main in SDK 6.1 in multilink peripheral example</title><link>https://devzone.nordicsemi.com/thread/24600?ContentTypeID=1</link><pubDate>Sat, 09 May 2015 12:50:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:56133483-1ddd-4c4d-a3db-f96eb950a222</guid><dc:creator>muhkuhns</dc:creator><description>&lt;pre&gt;&lt;code&gt;        static uint8_t value = 0xAB;
        ble_gatts_hvx_params_t hvx_params;
        uint16_t               len = sizeof(uint8_t);

        memset(&amp;amp;hvx_params, 0, sizeof(hvx_params));

        hvx_params.handle = m_char_handles.value_handle;
        hvx_params.type   = BLE_GATT_HVX_NOTIFICATION;
        hvx_params.offset = 0;
        hvx_params.p_len  = &amp;amp;len;
        hvx_params.p_data = &amp;amp;value;

        sd_ble_gatts_hvx(m_conn_handle, &amp;amp;hvx_params);
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>