Enabled arcs render after adapting OpenCNCPilot code.

Started porting iosender to C++
This commit is contained in:
2023-05-16 09:18:06 +03:00
parent c05a6a1ad2
commit 42aefe8ed8
23 changed files with 2200 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "comms.h"
static iosender::StreamComms *currentCommunicator = nullptr;
void iosender::Comms::SetCom(iosender::StreamComms *com) {
currentCommunicator = com;
}
iosender::StreamComms *iosender::Comms::GetCom() {
return currentCommunicator;
}