Files
MuditaOS/module-bsp/board/linux/headset/headset.cpp
Lefucjusz 773f2c7eb1 [BH-2069] Update license URL in headers
Update outdated license file URL in
license headers across all project.
2024-09-18 11:53:01 +02:00

32 lines
671 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
#include "headset.hpp"
namespace bsp
{
namespace headset
{
int32_t Init(xQueueHandle qHandle)
{
return 1;
}
HeadsetState headset_get_data(bool &headsetState, bool &microphoneState, uint8_t &keyEvent, uint8_t &keyCode)
{
return HeadsetState::NoChange;
}
bool IsInserted()
{
return false;
}
int32_t Deinit()
{
return 1;
}
} // namespace headset
} // namespace bsp