mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-26 15:58:36 -04:00
29 lines
431 B
C++
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
|