<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How can I implement Connection Parameters Request Procedure on QN908x as Peripheral device? in Wireless MCU</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696191#M3435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to code "Connection Parameters Request Procedure" to QN908x as a peripheral role.&amp;nbsp; Has anyone already implemented this?&lt;/P&gt;&lt;P&gt;I was searching sample codes for this, but I could not find any (even though there are many other sample code for services/profiles).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I could get any sample code/snippet for this, it would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Daisuke&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 01 Oct 2017 04:00:55 GMT</pubDate>
    <dc:creator>daisuke</dc:creator>
    <dc:date>2017-10-01T04:00:55Z</dc:date>
    <item>
      <title>How can I implement Connection Parameters Request Procedure on QN908x as Peripheral device?</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696191#M3435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to code "Connection Parameters Request Procedure" to QN908x as a peripheral role.&amp;nbsp; Has anyone already implemented this?&lt;/P&gt;&lt;P&gt;I was searching sample codes for this, but I could not find any (even though there are many other sample code for services/profiles).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I could get any sample code/snippet for this, it would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Daisuke&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2017 04:00:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696191#M3435</guid>
      <dc:creator>daisuke</dc:creator>
      <dc:date>2017-10-01T04:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: How can I implement Connection Parameters Request Procedure on QN908x as Peripheral device?</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696192#M3436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Daisuke,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the&amp;nbsp;&lt;STRONG&gt;Gap_UpdateConnectionParameters()&lt;/STRONG&gt; API from the peripheral to issue a Connection Parameter Update Request, but it will depend on the master if it will accept or reject the request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;Gap_UpdateConnectionParameters&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;mPeerDeviceId&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gGapDefaultMinConnectionInterval_d &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gGapDefaultMaxConnectionInterval_d&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gGapDefaultConnectionLatency_d&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gGapDefaultSupervisionTimeout_d&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gGapConnEventLengthMin_d&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gGapConnEventLengthMax_d&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2017 21:31:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696192#M3436</guid>
      <dc:creator>gerardo_rodriguez</dc:creator>
      <dc:date>2017-10-19T21:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I implement Connection Parameters Request Procedure on QN908x as Peripheral device?</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696193#M3437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gerardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your reply.&lt;/P&gt;&lt;P&gt;Now, My 9080 as peripheral can send connection parameter update request to the peer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Daisuke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Oct 2017 06:24:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696193#M3437</guid>
      <dc:creator>daisuke</dc:creator>
      <dc:date>2017-10-20T06:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: How can I implement Connection Parameters Request Procedure on QN908x as Peripheral device?</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696194#M3438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where to call this function? Do you have example code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2018 09:50:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-can-I-implement-Connection-Parameters-Request-Procedure-on/m-p/696194#M3438</guid>
      <dc:creator>joachimk</dc:creator>
      <dc:date>2018-04-17T09:50:03Z</dc:date>
    </item>
  </channel>
</rss>

