Add a new top-level, transport independent library to respond to UMP Stream Discovery messages. This allows MIDI2.0 clients to discover UMP endpoints hosted on Zephyr over the UMP protocol. The endpoint specification can be gathered from the device tree, so that the same information used to generate USB descriptors in usb-midi2.0 can be delivered over UMP Stream. Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
38 lines
575 B
Plaintext
38 lines
575 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# Copyright (c) 2025 Aerlync Labs Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "lib/libc/Kconfig"
|
|
|
|
source "lib/cpp/Kconfig"
|
|
|
|
menu "Additional libraries"
|
|
|
|
source "lib/hash/Kconfig"
|
|
|
|
source "lib/heap/Kconfig"
|
|
|
|
source "lib/mem_blocks/Kconfig"
|
|
|
|
source "lib/midi2/Kconfig"
|
|
|
|
source "lib/net_buf/Kconfig"
|
|
|
|
source "lib/os/Kconfig"
|
|
|
|
source "lib/posix/Kconfig"
|
|
|
|
source "lib/smf/Kconfig"
|
|
|
|
source "lib/acpi/Kconfig"
|
|
|
|
source "lib/runtime/Kconfig"
|
|
|
|
source "lib/utils/Kconfig"
|
|
|
|
source "lib/uuid/Kconfig"
|
|
|
|
source "lib/min_heap/Kconfig"
|
|
endmenu
|