mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
28 lines
345 B
C++
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)
|
|
{}
|