mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 07:28:21 -04:00
16 lines
281 B
C++
16 lines
281 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
namespace bluetooth
|
|
{
|
|
enum class AudioProfile
|
|
{
|
|
A2DP,
|
|
HSP,
|
|
HFP,
|
|
None
|
|
};
|
|
};
|