moving application communications buffer to the application class

This commit is contained in:
Attila Body 2020-11-16 00:17:19 +01:00
parent ba34922951
commit 0e09fd9a7a
2 changed files with 8 additions and 9 deletions

View file

@ -40,6 +40,7 @@ private:
SerialConsole<257> m_console;
volatile bool m_lineReceived = false;
volatile SerialConsole<257>::Buffer *m_rcvdBuffer;
char m_appBuffer[128];
volatile bool m_transmissionCompleted = true;
};