-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
applications: nrf5340_audio: Upmerge fixes
- Changed to using overlay files for each application - Updated use of upstream API - OCT-3172 Signed-off-by: Alexander Svensen <[email protected]>
- Loading branch information
Showing
18 changed files
with
234 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 0 additions & 109 deletions
109
applications/nrf5340_audio/broadcast_sink/Kconfig.defaults
This file was deleted.
Oops, something went wrong.
66 changes: 66 additions & 0 deletions
66
applications/nrf5340_audio/broadcast_sink/overlay-broadcast_sink.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# | ||
# Copyright (c) 2025 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
CONFIG_TRANSPORT_BIS=y | ||
|
||
## ACL related configs ## | ||
CONFIG_BT_OBSERVER=y | ||
CONFIG_BT_PERIPHERAL=y | ||
CONFIG_BT_SMP=y | ||
CONFIG_BT_AUDIO=y | ||
CONFIG_BT_GATT_DYNAMIC_DB=y | ||
CONFIG_BT_GATT_CACHING=n | ||
|
||
CONFIG_SETTINGS=y | ||
CONFIG_BT_SETTINGS=y | ||
CONFIG_FLASH=y | ||
CONFIG_FLASH_MAP=y | ||
CONFIG_NVS=y | ||
|
||
CONFIG_BT_BUF_ACL_TX_COUNT=18 | ||
|
||
CONFIG_BT_CAP_ACCEPTOR=y | ||
CONFIG_BT_CSIP_SET_MEMBER=y | ||
CONFIG_BT_CAP_ACCEPTOR_SET_MEMBER=y | ||
CONFIG_BT_GAP_PERIPHERAL_PREF_PARAMS=y | ||
CONFIG_BT_VCP_VOL_REND=y | ||
|
||
CONFIG_BT_PERIPHERAL_PREF_MIN_INT=64 | ||
CONFIG_BT_PERIPHERAL_PREF_MAX_INT=69 | ||
CONFIG_BT_PERIPHERAL_PREF_LATENCY=0 | ||
CONFIG_BT_PERIPHERAL_PREF_TIMEOUT=200 | ||
|
||
# Generic Audio Sink - 0x0840 | ||
CONFIG_BT_DEVICE_APPEARANCE=2112 | ||
CONFIG_BT_PER_ADV_SYNC_MAX=2 | ||
|
||
## ISO related configs ## | ||
CONFIG_BT_BAP_BROADCAST_SNK_STREAM_COUNT=2 | ||
CONFIG_BT_BAP_BROADCAST_SNK_COUNT=2 | ||
CONFIG_BT_ISO_MAX_CHAN=2 | ||
CONFIG_BT_ISO_MAX_BIG=2 | ||
|
||
CONFIG_BT_PER_ADV_SYNC_TRANSFER_RECEIVER=y | ||
|
||
## PACS related configs ## | ||
CONFIG_BT_PAC_SNK_NOTIFIABLE=y | ||
CONFIG_BT_PAC_SNK=y | ||
CONFIG_BT_PAC_SRC_NOTIFIABLE=y | ||
CONFIG_BT_PAC_SRC=y | ||
|
||
## Audio related configs ## | ||
CONFIG_AUDIO_MUTE=n | ||
CONFIG_AUDIO_TEST_TONE=n | ||
|
||
CONFIG_BT_ISO_SYNC_RECEIVER=y | ||
CONFIG_BT_BAP_SCAN_DELEGATOR=y | ||
CONFIG_BT_BAP_BROADCAST_SINK=y | ||
|
||
## LC3 related configs ## | ||
CONFIG_LC3_DEC_CHAN_MAX=1 | ||
|
||
|
||
|
27 changes: 27 additions & 0 deletions
27
applications/nrf5340_audio/broadcast_source/overlay-broadcast_source.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# Copyright (c) 2025 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
CONFIG_TRANSPORT_BIS=y | ||
|
||
CONFIG_BT_CAP_INITIATOR=y | ||
CONFIG_BT_AUDIO=y | ||
|
||
CONFIG_BT_DEVICE_APPEARANCE=2181 | ||
|
||
CONFIG_BT_ISO_BROADCASTER=y | ||
|
||
CONFIG_BT_BAP_BROADCAST_SOURCE=y | ||
|
||
CONFIG_BT_ISO_TX_BUF_COUNT=2 | ||
|
||
CONFIG_BT_BAP_BROADCAST_SRC_STREAM_COUNT=2 | ||
|
||
CONFIG_BT_ISO_MAX_CHAN=2 | ||
|
||
CONFIG_BT_ISO_MAX_BIG=2 | ||
|
||
CONFIG_LC3_ENC_CHAN_MAX=2 | ||
CONFIG_ENTROPY_GENERATOR=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,3 @@ config NVS | |
|
||
config NVS_LOG_LEVEL | ||
default 2 | ||
|
||
config BT_ASCS_MAX_ASE_SRC_COUNT | ||
default 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.