Files
MuditaOS/module-bsp/board/linux/headset/headset.cpp
2020-08-07 11:32:05 +02:00

29 lines
431 B
C++

#include "headset.hpp"
namespace bsp
{
namespace headset
{
int32_t Init(xQueueHandle qHandle)
{
return 1;
}
bool Handler(uint8_t notification)
{
return false;
}
bool IsInserted()
{
return false;
}
int32_t Deinit()
{
return 1;
}
} // namespace headset
} // namespace bsp