1#
2# Copyright 2025 NXP
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6
7mainmenu "Bluetooth: A2DP Source"
8
9config BT_A2DP_SOURCE_DISCOVER_RESULT_COUNT
10	int "Maximum result count per device discovery"
11	default 10
12
13config BT_A2DP_SOURCE_EPS_DISCOVER_COUNT
14	int "Maximum result count per a2dp endpoint discovery"
15	default 5
16
17config BT_A2DP_SOURCE_SBC_BIT_RATE_DEFAULT
18	int "default sbc bit rate"
19	default 229
20
21config BT_A2DP_SOURCE_DATA_SEND_INTERVAL
22	int "data send interval (ms)"
23	default 10
24
25config BT_A2DP_SOURCE_DATA_BUF_SIZE
26	int "data buffer size (bytes)"
27	default 1000
28
29config BT_A2DP_SOURCE_DATA_BUF_COUNT
30	int "data buffer count"
31	default 5
32
33config BT_A2DP_SOURCE_DATA_SEND_WORKQ_STACK_SIZE
34	int "the data sending work queue stack size"
35	default 1024
36
37config BT_A2DP_SOURCE_DATA_SEND_WORKQ_PRIORITY
38	int "the data sending work queue priority"
39	default SYSTEM_WORKQUEUE_PRIORITY
40
41source "Kconfig.zephyr"
42