Files
MuditaOS/module-bsp/board/linux/harness/harness.cpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

28 lines
345 B
C++

#include "harness.hpp"
int hwInit(xQueueHandle qHandle)
{
return 0;
}
std::string hwRead()
{
return "";
}
bool hwFlush()
{
return false;
}
bool hwEmit(const std::string &)
{
return false;
}
using namespace bsp::harness::gpio;
bool hwGpioRead(enum Pin el)
{
return false;
}
void hwGpioWrite(enum Pin el, uint32_t state)
{}