<?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>Provisioning process, invitation and capabilities receiving</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/55681/provisioning-process-invitation-and-capabilities-receiving</link><description>Invitation : The provisioner invites the unprovisioned device to send its provisioning capabilities information. 
 
 Firmware version from this examle: https://github.com/NordicPlayground/thingy52-mesh-provisioning-demo 
 In According to the information</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 19 Dec 2019 12:50:15 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/55681/provisioning-process-invitation-and-capabilities-receiving" /><item><title>RE: Provisioning process, invitation and capabilities receiving</title><link>https://devzone.nordicsemi.com/thread/226370?ContentTypeID=1</link><pubDate>Thu, 19 Dec 2019 12:50:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:18aa1401-e6c4-43b4-b937-213be76fc10e</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;There is a section of code there, that should be done right after connection instead:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;gatt.setCharacteristicNotification(characteristic, true);
BluetoothGattDescriptor descriptor = characteristic.getDescriptor(UUID.fromString(&amp;quot;00002902-0000-1000-8000-00805f9b34fb&amp;quot;));
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
gatt.writeDescriptor(descriptor);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;As is, you may have gotten to the point where you should get a notification BEFORE you actually configure the CCCD to give you the notification. That is, when the result should be sent, you have not yet enabled notifications, and so no notification containing the response will be sent.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>