##// END OF EJS Templates
Functions added to the plugin to get the number of CCSDS packets...
Functions added to the plugin to get the number of CCSDS packets transmitted (linked to the lfrcontrol plugin counter of TC transmitted, it is possible to flush the TC transmission before changing the spacewire link in use)

File last commit:

r40:cda6b4e8adc1 Patch 3 from Paul on spwplugin default
r40:cda6b4e8adc1 Patch 3 from Paul on spwplugin default
Show More
spwpywrapper.h
38 lines | 1.3 KiB | text/x-c | CLexer
Added stop function to dsu3plugin...
r14 #ifndef SPWPYWRAPPER_H
#define SPWPYWRAPPER_H
#include <genericPySysdriver.h>
class spwPyWrapper : public genericPySysdriver
{
Q_OBJECT
public:
explicit spwPyWrapper(socexplorerplugin *parent = 0);
signals:
Jeandet Alexis
Sync
r15 void selectBridge(const QString &bridgeName);
Added stop function to dsu3plugin...
r14 bool connectBridge();
bool disconnectBridge();
void StarDundeeSelectBrick(int brickIndex);
void StarDundeeSelectLinkNumber(int linkIndex);
void StarDundeeSelectLinkSpeed(int linkSpeed);
paul
timecodes added to the spw plugin
r38 void StarDundeeSetSourceAddress(const QString & destKey);
void StarDundeeSetDestinationAddress(const QString & address);
void StarDundeeSetDestinationKey(const QString & key);
Added stop function to dsu3plugin...
r14 void StarDundeeSetRmapTimeout(const QString & timeout);
paul
Functions added to the Python API:...
r35 int StarDundeeGetAvailableBrickCount();
paul
Functions added to the plugin to get the number of CCSDS packets...
r40 unsigned int StarDundeeGetNbPacketsTransmittedToSpw( void );
unsigned int StarDundeeGetNbCCSDSPacketsTransmittedToSpw( void );
int StarDundeeGetLinkNumber();
paul
Functions added to the Python API:...
r35 void StarDundeeSetBrickAsAninterface( bool );
void StarDundeeSetBrickAsARouter( bool );
paul
timecodes added to the spw plugin
r38 void StarDundeeSetTimecodeFrequency( double );
void StarDundeeStartTimecodes( bool );
Jeandet Alexis
Sync
r20
void TCPServerConnect();
void TCPServerDisconnect();
void TCPServerSetPort(qint32 port);
Sync
r21 void TCPServerSetIP(QString ip);
paul
Functions added to the plugin to get the number of CCSDS packets...
r40
Added stop function to dsu3plugin...
r14 public slots:
};
#endif // SPWPYWRAPPER_H