nppilot/platform/posix/usblink.cc
Michael Hope 6fc685bc2a Added debug routines.
Split the board specific code into a HAL API.
Added a POSIX HAL and hacked everything over to it.
2013-07-04 20:55:01 +02:00

20 lines
219 B
C++

#include <cstdint>
#include <algorithm>
#include <cstring>
#include "usblink.h"
USBLink::USBLink()
: tx_()
{
}
void USBLink::write(const uint8_t* data, int length)
{
}
bool USBLink::flush()
{
return true;
}