-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKconfig
49 lines (36 loc) · 1.11 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Copyright (c) 2018 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
menuconfig NRF5340_AUDIO
bool "nRF5340 Audio [EXPERIMENTAL]"
select EXPERIMENTAL
if NRF5340_AUDIO
choice NRF5340_AUDIO_TRANSPORT_MODE
prompt "Choose BIS or CIS for ISO transport"
default TRANSPORT_CIS
config TRANSPORT_BIS
bool "Use BIS (Broadcast Isochronous Stream)"
config TRANSPORT_CIS
bool "Use CIS (Connected Isochronous Stream)"
endchoice
#----------------------------------------------------------------------------#
rsource "src/audio/Kconfig"
rsource "src/bluetooth/Kconfig"
rsource "src/utils/Kconfig"
rsource "src/synthesizer/Kconfig"
rsource "src/io/Kconfig"
#----------------------------------------------------------------------------#
menu "Logging"
config LOG_MAIN_LEVEL
int "Log level for main file"
default 3
config PRINT_STACK_USAGE_MS
depends on THREAD_ANALYZER && INIT_STACKS
int "Print stack usage every x milliseconds"
default 5000
endmenu # Log levels
#----------------------------------------------------------------------------#
endif # NRF5340_AUDIO
source "Kconfig.zephyr"