pawr_sync_conn doesn't work for nrf5340 audio dk

I have tried zephyr/sample/bluetooth/periodic_sync_conn in nrfsdk v2.7 and test on nrf5340 audio dk, and doens't work. the output is:

*** Using Zephyr OS v3.6.99-100befc70c74 ***
Starting Periodic Advertising with Responses Synchronization Demo
[00:00:00.390,350] <inf> bt_hci_core: HW Platform: Nordic Semiconductor (0x0002)
[00:00:00.390,380] <inf> bt_hci_core: HW Variant: nRF53x (0x0003)
[00:00:00.390,411] <inf> bt_hci_core: Firmware: Standard Bluetooth controller (0x00) Version 214.51162 B0
[00:00:00.426,483] <inf> bt_hci_core: Identity: E3:56:6A:09:47:E1 (random)
[00:00:00.426,513] <inf> bt_hci_core: HCI: version 5.4 (0x0d) revision 0x21fb, manufacturer 0x0059
[00:00:00.426,544] <inf> bt_hci_core: LMP: version 5.4 (0x0d) subver 0x21fb
Found periodic advertising.
Creating Periodic Advertising SyncWaiting for periodic sync
Synced to 69:3D:3A:3B:A1:BF (random) with 0 subevents
[00:00:00.696,502] <wrn> bt_hci_core: opcode 0x2084 status 0x01
Failed to set subevents to sync to (err -5)
Periodic sync established.
Stopped scanning
Responding with own addr: 55:C0:52:42:E2:F9 (random).

Suspect it is caused by some configuration.

 Please help on it.

Thanks,

Chen Yang

Parents
  • Hi Chen, 
    What you are seeing is that the opcode BT_HCI_OP_LE_SET_PER_ADV_SYNC_SUBEVENT (0x2084 ) is not supported (status 0x01)
    Most likely it's the stack on the netcore has not been configured to support PAWR. Please check your configuration for the netcore. 
    If you use sysbuild it should be added to ipc_radio.conf: 


    CONFIG_BT_EXT_ADV=y
    CONFIG_BT_CTLR_ADV_EXT=y

Reply
  • Hi Chen, 
    What you are seeing is that the opcode BT_HCI_OP_LE_SET_PER_ADV_SYNC_SUBEVENT (0x2084 ) is not supported (status 0x01)
    Most likely it's the stack on the netcore has not been configured to support PAWR. Please check your configuration for the netcore. 
    If you use sysbuild it should be added to ipc_radio.conf: 


    CONFIG_BT_EXT_ADV=y
    CONFIG_BT_CTLR_ADV_EXT=y

Children
Related