Implementation of some SCPI commands via TCP

This commit is contained in:
Jan Käberich 2021-04-11 00:10:22 +02:00
parent f1d52f159b
commit a15d02f217
15 changed files with 627 additions and 19 deletions

View file

@ -3,8 +3,9 @@
#include "mode.h"
#include "signalgenwidget.h"
#include "scpi.h"
class Generator : public Mode
class Generator : public Mode, public SCPINode
{
public:
Generator(AppWindow *window);
@ -19,6 +20,7 @@ private slots:
void updateDevice();
private:
void setupSCPI();
SignalgeneratorWidget *central;
};