<?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 Re: QN9090 BLE Enhanced Controller Notifications not working in Wireless MCU</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1759152#M15967</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing well. Could you please help me confirm if the Wireless UART fits your requirements for the notifications?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ricardo&lt;/P&gt;</description>
    <pubDate>Fri, 17 Nov 2023 17:09:26 GMT</pubDate>
    <dc:creator>Ricardo_Zamora</dc:creator>
    <dc:date>2023-11-17T17:09:26Z</dc:date>
    <item>
      <title>QN9090 BLE Enhanced Controller Notifications not working</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1757253#M15909</link>
      <description>&lt;P&gt;I am using BLE on QN9090. I am advertising in non connectable mode. I wanted to get extra notifications related to advertising. I use&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Gap_ControllerEnhancedNotification()&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;function to enable advertising notification.&lt;BR /&gt;&lt;BR /&gt;Afterwards I get only one event :&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;gControllerNotificationEvent_c &lt;/EM&gt;&lt;/STRONG&gt;in&amp;nbsp;BleApp_GenericCallback with the event type =&amp;nbsp;&lt;STRONG&gt;gNotifEventNone_c&amp;nbsp;&lt;/STRONG&gt; and event status =&amp;nbsp;gHciUnknownHciCommand_c.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what could be the reason for this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 02:47:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1757253#M15909</guid>
      <dc:creator>umx</dc:creator>
      <dc:date>2023-11-15T02:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: QN9090 BLE Enhanced Controller Notifications not working</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1757762#M15924</link>
      <description>&lt;P&gt;I have seen that demo example&amp;nbsp;SDK_2_6_11_QN9090DK6\boards\qn9090dk6\wireless_examples\bluetooth\w_uart also makes use of Controller Enhanced Notifications, but I have not been able to test if the notifications actually work in that example or not.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 16:35:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1757762#M15924</guid>
      <dc:creator>umx</dc:creator>
      <dc:date>2023-11-15T16:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: QN9090 BLE Enhanced Controller Notifications not working</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1759152#M15967</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing well. Could you please help me confirm if the Wireless UART fits your requirements for the notifications?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ricardo&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 17:09:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1759152#M15967</guid>
      <dc:creator>Ricardo_Zamora</dc:creator>
      <dc:date>2023-11-17T17:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: QN9090 BLE Enhanced Controller Notifications not working</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1759774#M15974</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;I want to get enhanced notifications just in my application similar to how it is done in Wireless UART.&amp;nbsp;&lt;BR /&gt;But as I have mentioned in the main query for some reason it does not seem to work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how my generic call back function looks like:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void BleApp_GenericCallback(gapGenericEvent_t *pGenericEvent)
{
    switch (pGenericEvent-&amp;gt;eventType)
    {
    case gControllerNotificationEvent_c:
    {
    	bleNotificationEvent_t event = pGenericEvent-&amp;gt;eventData.notifEvent;
    	bleResult_t result = event.status;
    	LOG("controller notification received: %d status %d", event.eventType,result);
    	if(result == gHciUnknownHciCommand_c){
    		LOG("Unknown hci command!");
    	}
    }
    break;
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Whenever I subscribe to a enhanced notification.&amp;nbsp;&lt;SPAN&gt;Inside&amp;nbsp;&lt;STRONG&gt;gControllerNotificationEvent_c&lt;/STRONG&gt; case I always get:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;event type =&amp;nbsp;&lt;STRONG&gt;gNotifEventNone_c&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;event status =&amp;nbsp;&lt;STRONG&gt;gHciUnknownHciCommand_c&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 10:09:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/QN9090-BLE-Enhanced-Controller-Notifications-not-working/m-p/1759774#M15974</guid>
      <dc:creator>umx</dc:creator>
      <dc:date>2023-11-20T10:09:22Z</dc:date>
    </item>
  </channel>
</rss>

