mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
22 lines
345 B
C++
22 lines
345 B
C++
#include <bsp/BoardDefinitions.hpp>
|
|
#include <drivers/gpio/DriverGPIO.hpp>
|
|
|
|
static std::shared_ptr<drivers::DriverGPIO> port;
|
|
|
|
namespace bsp
|
|
{
|
|
namespace vibrator
|
|
{
|
|
|
|
void init()
|
|
{
|
|
}
|
|
void enable()
|
|
{
|
|
}
|
|
void disable()
|
|
{
|
|
}
|
|
} // namespace vibrator
|
|
} // namespace bsp
|