1# Copyright (c) 2023 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4source "Kconfig.zephyr" 5 6mainmenu "Bluetooth: ISO Receive" 7 8config ISO_PRINT_INTERVAL 9 int "Interval between each packet report" 10 range 1 360000 11 default 1 12 help 13 Only print the packet report once in a given interval of ISO packets. 14 15config ISO_ALIGN_PRINT_INTERVALS 16 bool "Align report interval with incoming packets" 17 help 18 Align interval-counter with packet number from incoming ISO packets. 19 This may be needed if report printouts are to be synchronized between 20 the iso_broadcast sample and the iso_receive sample. 21 22config ISO_BLINK_LED0 23 bool "Blink led0" 24 depends on $(dt_alias_enabled,led0) 25 select GPIO 26 default y 27