16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 20:39:18 +02:00

zmq panel interface

This commit is contained in:
milek7
2020-03-29 21:54:57 +02:00
parent e8537a16bb
commit cefd741d04
8 changed files with 431 additions and 1 deletions

View File

@@ -20,6 +20,9 @@ http://mozilla.org/MPL/2.0/.
#ifdef WITH_UART
#include "uart.h"
#endif
#ifdef WITH_ZMQ
#include "zmq_input.h"
#endif
class driver_mode : public application_mode {
@@ -81,6 +84,9 @@ private:
#endif
#ifdef WITH_UART
std::unique_ptr<uart_input> uart;
#endif
#ifdef WITH_ZMQ
std::unique_ptr<zmq_input> zmq;
#endif
std::unique_ptr<motiontelemetry> telemetry;