##// END OF EJS Templates
Sync
Sync

File last commit:

r23:c8236d174134 default
r23:c8236d174134 default
Show More
gr_esb_bridge.h
27 lines | 635 B | text/x-c | CLexer
Jeandet Alexis
Started GR-ESB driver.
r22 #ifndef GR_ESB_BRIDGE_H
#define GR_ESB_BRIDGE_H
#include "abstractspwbridge.h"
Jeandet Alexis
Sync
r23 #include <QTcpSocket>
Jeandet Alexis
Started GR-ESB driver.
r22
class GR_ESB_bridge : public abstractSpwBridge
{
Q_OBJECT
public:
explicit GR_ESB_bridge(socexplorerplugin *parent = 0);
Jeandet Alexis
Sync
r23 ~GR_ESB_bridge();
Jeandet Alexis
Started GR-ESB driver.
r22 signals:
public slots:
bool connectBridge();
bool disconnectBridge();
unsigned int Write(unsigned int *Value,unsigned int count, unsigned int address=0);
unsigned int Read(unsigned int *Value,unsigned int count, unsigned int address=0);
int pushRMAPPacket(char* packet,int size);
Jeandet Alexis
Sync
r23 void packetReceived();
Jeandet Alexis
Started GR-ESB driver.
r22
Jeandet Alexis
Sync
r23 QTcpSocket* soc;
Jeandet Alexis
Started GR-ESB driver.
r22
};
#endif // GR_ESB_BRIDGE_H