<?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>Send own data using Multilink Peripheral Example ( more than uint8 e.g. uint32 )</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/6838/send-own-data-using-multilink-peripheral-example-more-than-uint8-e-g-uint32</link><description>Got it working .. forgot (didn&amp;#39;t know) I had to change the attribute length as well 
 I am currently trying to figure out where/how to attach my measurements so they can later be requested by a central when in a connection (and for the time being with</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 05 May 2015 14:17:14 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/6838/send-own-data-using-multilink-peripheral-example-more-than-uint8-e-g-uint32" /><item><title>RE: Send own data using Multilink Peripheral Example ( more than uint8 e.g. uint32 )</title><link>https://devzone.nordicsemi.com/thread/24098?ContentTypeID=1</link><pubDate>Tue, 05 May 2015 14:17:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce66d9cf-1404-44d6-932f-46d291b9ce77</guid><dc:creator>muhkuhns</dc:creator><description>&lt;p&gt;Got it. Forgot to/Didn&amp;#39;t know I had to change attributes length as well.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;...
    attr.max_len   = 3;
...
    		uint8_t temp_temp[] = {0xAB, 0xCD, 0xEF};
    		ble_gatts_value_t test_value;
    		test_value.len = sizeof(uint8_t)*3;
    		test_value.offset = 0;
    		test_value.p_value = (uint8_t*)&amp;amp;temp_temp;		
    		sd_ble_gatts_value_set(m_conn_handle,m_char_handles.value_handle, &amp;amp;test_value);
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>