<?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>long write can not be implemented</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/36872/long-write-can-not-be-implemented</link><description>I want to implement a long write. The environment in use is below. &amp;#183; SDK15 &amp;#183; Nrf 52 &amp;#183; Nrf 52832_xxaa &amp;#183; S132_nrf52_6.0.0_softdevice.hex 
 My start is &amp;quot;nRF5_SDK_15.0.0_a53641a \ examples \ ble_peripheral \ ble_app_uart&amp;quot;. I am adding my service to this.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 13 Aug 2018 02:59:08 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/36872/long-write-can-not-be-implemented" /><item><title>RE: long write can not be implemented</title><link>https://devzone.nordicsemi.com/thread/143828?ContentTypeID=1</link><pubDate>Mon, 13 Aug 2018 02:59:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9c85d22f-9ea0-4267-8257-c664852e1832</guid><dc:creator>zkt-1400</dc:creator><description>&lt;p&gt;I solved this problem by using nrf_ble_qwr.c.&lt;/p&gt;
&lt;p&gt;But I got a new question.&lt;/p&gt;
&lt;p&gt;When writing less than 20 bytes, the length can be confirmed below.&lt;/p&gt;
&lt;p&gt;&amp;middot; p_evt_write-&amp;gt; len&lt;/p&gt;
&lt;p&gt;How do you check the length when it is longwrite?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: long write can not be implemented</title><link>https://devzone.nordicsemi.com/thread/142677?ContentTypeID=1</link><pubDate>Thu, 02 Aug 2018 15:44:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:685c3f27-30c1-4d29-b1f4-221f9233c671</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;There is no thing as a long read, the central will have to read the characteristic piece by piece by using an offset, see&amp;nbsp;&lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s132.api.v6.0.0/group___b_l_e___g_a_t_t_c___v_a_l_u_e___r_e_a_d___m_s_c.html"&gt;GATTC Characteristic or Descriptor Value Read&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: long write can not be implemented</title><link>https://devzone.nordicsemi.com/thread/142037?ContentTypeID=1</link><pubDate>Tue, 31 Jul 2018 03:58:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:df27214b-6c06-4d6a-9f33-326ba798670d</guid><dc:creator>dc</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I thing there is only long queued write operation. I would like to know about long read also. can you please explain me how to done long read with same characteristic and what changes i need to take care for it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: long write can not be implemented</title><link>https://devzone.nordicsemi.com/thread/141981?ContentTypeID=1</link><pubDate>Mon, 30 Jul 2018 14:38:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:70eb97d5-868c-4892-96af-56a10214a9f3</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;The&amp;nbsp;&lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.0.0/group__nrf__ble__qwr.html?resultof=%22%51%75%65%75%65%64%22%20%22%71%75%65%75%22%20%22%77%72%69%74%65%22%20"&gt;Queued Writes module&lt;/a&gt;&amp;nbsp;in SDK v15.0.0 implements queued writes, a.k.a long writes.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We have a&amp;nbsp;&lt;a title="Software Development Kit" href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.0.0/ble_sdk_app_queued_writes.html?resultof=%22%51%75%65%75%65%64%22%20%22%71%75%65%75%22%20%22%77%72%69%74%65%22%20"&gt;nRF5 SDK v15.0.0: Experimental: Queued Writes Application&lt;/a&gt;&amp;nbsp;that shows how the QWR module is intended to be used.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Best regards&lt;/p&gt;
&lt;p&gt;Bjørn&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: long write can not be implemented</title><link>https://devzone.nordicsemi.com/thread/141572?ContentTypeID=1</link><pubDate>Thu, 26 Jul 2018 18:18:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:be979b2b-1459-44c2-832d-8edf5d475b4b</guid><dc:creator>dc</dc:creator><description>&lt;p&gt;Hi ZKT-1400,&lt;/p&gt;
&lt;p&gt;I am also looking solution for long write with SDK15.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>