mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 15:07:17 -04:00
Add support for voice calls over HSP. Signed-off-by: Marcin Smoczyński <smoczynski.marcin@gmail.com>
16 lines
269 B
C++
16 lines
269 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
namespace bluetooth
|
|
{
|
|
enum class AudioProfile
|
|
{
|
|
A2DP,
|
|
HSP,
|
|
HFP,
|
|
None
|
|
};
|
|
};
|