Remove vcp_receiver

This commit is contained in:
2020-06-29 00:39:15 +02:00
parent 70e3d52dea
commit 6864761acf
3 changed files with 1 additions and 65 deletions

View File

@@ -1,10 +0,0 @@
#include "vcp_receiver.hpp"
extern "C" void vcpReceiveCallback(uint8_t* buf, uint32_t len)
{
for(uint32_t i = 0; i < len; ++i) {
VcpReceiver::rxHandler(buf[i]);
}
}
volatile VcpReceiver::RingBuffer<detail::VCP_RECEIVE_BUFFER_SIZE> VcpReceiver::m_receiveBuffer;