1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 07:23:07 +01:00

intermediate: actisense format on USB

This commit is contained in:
wellenvogel
2021-11-26 00:09:34 +01:00
parent dbadb6fb11
commit 284be741f5
6 changed files with 119 additions and 19 deletions

View File

@@ -4,6 +4,7 @@
#include "GwLog.h"
#include "GwBuffer.h"
class SerialWriter;
class GwSerialStream;
class GwSerial{
private:
GwBuffer *buffer;
@@ -28,5 +29,7 @@ class GwSerial{
void loop(bool handleRead=true);
bool readMessages(GwBufferWriter *writer);
void flush();
Stream *getStream(bool partialWrites);
friend GwSerialStream;
};
#endif