zephyr/samples/bluetooth/tmap_central/src/mcp_server.c
Emil Gydesen dbabc18940 samples: Bluetooth: Audio: Spring cleanup for audio header files
Add missing and remove unused includes. Fix spelling mistakes.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2025-02-04 12:03:04 +01:00

22 lines
373 B
C

/** @file
* @brief Bluetooth Media Control Profile (MCP) Server role.
*
* Copyright 2023 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/bluetooth/conn.h>
#include <zephyr/bluetooth/audio/media_proxy.h>
#include <zephyr/kernel.h>
#include <zephyr/sys/printk.h>
int mcp_server_init(void)
{
int err;
err = media_proxy_pl_init();
return err;
}