<?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>Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/117199/concurrent-bis-and-pawr-when-using-past</link><description>Dear Team, 
 Is it possible to run BIS and PAwR concurrently while using PAST for synchronization? I am using the nRF52840 DK and NCS 2.8. 
 I managed to start two periodic advertising trains (BIS and PAwR) concurrently without any issues (both are working</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 19 Dec 2024 06:08:50 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/117199/concurrent-bis-and-pawr-when-using-past" /><item><title>RE: Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/thread/515641?ContentTypeID=1</link><pubDate>Thu, 19 Dec 2024 06:08:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2301aca5-ae92-46a4-8a16-2295a33c30f6</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Just an update on the fix: It will be merged into the NCS in the next nrfxlib-update so I would presume in maybe a release or two of NCS(not counting the one from last night).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/thread/514870?ContentTypeID=1</link><pubDate>Fri, 13 Dec 2024 10:26:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:95b4ad74-6dbf-4ffa-9ce5-c27c9df6b2c0</guid><dc:creator>Rai</dc:creator><description>&lt;p&gt;&lt;span&gt;Thank you! This fix worked for me.&lt;br /&gt;Will this issue be addressed in a future update?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/thread/514759?ContentTypeID=1</link><pubDate>Thu, 12 Dec 2024 13:48:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f473526-a209-4002-ba06-9939beb28451</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi and thanks for the clarification&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Our softdevice team has looked into it made this workaround for you which should fix the issue for you while they investigate a bit.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;diff --
git a/samples/bluetooth/periodic_adv_rsp/src/main.c b/samples/bluetooth/periodic_adv_rsp/src/main.c
index 37d04306246..f42d651facc 100644
--- a/samples/bluetooth/periodic_adv_rsp/src/main.c
+++ b/samples/bluetooth/periodic_adv_rsp/src/main.c
@@ -10,6 +10,8 @@
 #include &amp;lt;zephyr/bluetooth/gatt.h&amp;gt;
 #include &amp;lt;zephyr/bluetooth/hci.h&amp;gt;
 
+#include &amp;lt;sdc_hci_vs.h&amp;gt;
+
 #define NUM_RSP_SLOTS 5
 #define NUM_SUBEVENTS 5
 #define PACKET_SIZE   5
@@ -27,11 +29,11 @@ static const struct bt_le_per_adv_param per_adv_params = {
        .interval_min = 0xFF,
        .interval_max = 0xFF,
        .options = 0,
-       .num_subevents = NUM_SUBEVENTS,
-       .subevent_interval = 0x30,
-       .response_slot_delay = 0x5,
-       .response_slot_spacing = 0x50,
-       .num_response_slots = NUM_RSP_SLOTS,
+       .num_subevents = 0,
+       .subevent_interval = 0,
+       .response_slot_delay = 0,
+       .response_slot_spacing = 0,
+       .num_response_slots = 0,
 };
 
 static struct bt_le_per_adv_subevent_data_params subevent_data_params[NUM_SUBEVENTS];
@@ -264,6 +266,14 @@ int main(void)
                return 0;
        }
 
+
+       sdc_hci_cmd_vs_allow_parallel_connection_establishments_t parallel_params = {.enable = 1};
+       err = sdc_hci_cmd_vs_allow_parallel_connection_establishments(&amp;amp;parallel_params);
+       if (err) {
+               printk(&amp;quot;Failed to allow parallel connection establishment (err %d)\n&amp;quot;, err);
+               return 0;
+       }
+
        /* Create a non-connectable advertising set */
        err = bt_le_ext_adv_create(BT_LE_EXT_ADV_NCONN, &amp;amp;adv_cb, &amp;amp;pawr_adv);
        if (err) {
 &lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/thread/514726?ContentTypeID=1</link><pubDate>Thu, 12 Dec 2024 12:17:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:79533fc0-1405-46da-9b99-2aeab6600d95</guid><dc:creator>Rai</dc:creator><description>&lt;p&gt;&lt;span&gt;Hi Runar,&lt;br /&gt;Thank you for addressing this issue. &lt;br /&gt;&lt;br /&gt;No, the&amp;nbsp;BIG is created from a standard PADVB (I have set the num_subevents=0), and there are no issues during its creation. However, after creating the BIG (when setting num_subevents=0 and &lt;em&gt;CONFIG_BT_PER_ADV_RSP=y)&lt;/em&gt;, I am unable to establish a connection to another device, as mentioned in the example above.&lt;br /&gt; &lt;br /&gt;For context, I currently have one PAwR and one BIS running without any problems. My goal is to connect to a peer device to send synchronization information via PAST.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Rainer&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/thread/514691?ContentTypeID=1</link><pubDate>Thu, 12 Dec 2024 10:17:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:28bcc4c7-29fd-4a23-acda-3dbefaff5dfd</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Just to verify, is the BIG from PAwR? &lt;span&gt;SDC does not support creating a BIG from a PAwR train, which explains why it would fail. Setting num_subevents=0 will create a &amp;quot;normal&amp;quot; PADVB from which you can &amp;nbsp;can create a BIG.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Runar&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Concurrent BIS and PAwR when using PAST</title><link>https://devzone.nordicsemi.com/thread/514499?ContentTypeID=1</link><pubDate>Wed, 11 Dec 2024 12:17:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:597dbdf1-92ec-4e99-b1ca-2f6b302b3812</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I&amp;#39;m looking into the issue and I hope to get back to you tomorrow.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>