##// END OF EJS Templates
Protocole written but not tested yet.
Protocole written but not tested yet.

File last commit:

r2:0537883b23fe default
r3:66fd6489c66a default
Show More
uprobe.h
26 lines | 444 B | text/x-c | CLexer
kaveh
Init
r0 #ifndef UPROBE_H
#define UPROBE_H
#include <QObject>
kaveh
Sync
r2 #include <uprobeprotocol.h>
kaveh
Init
r0
class UProbe : public QObject
{
Q_OBJECT
public:
explicit UProbe(QObject *parent = 0);
signals:
kaveh
Sync
r2 void updateChannelCount(int count);
void sendWaveFormData(int channel,float* data,int count);
kaveh
Init
r0
public slots:
kaveh
Sync
r2 bool setPortName(const QString& name);
bool setPortSpeed(int speed);
private:
UProbeProtocol p_proto;
kaveh
Init
r0
};
#endif // UPROBE_H