##// 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
#ifndef SPWPYWRAPPER_H
#define SPWPYWRAPPER_H
#include <genericPySysdriver.h>
class spwPyWrapper : public genericPySysdriver
{
Q_OBJECT
public:
explicit spwPyWrapper(socexplorerplugin *parent = 0);
signals:
void selectBridge(const QString &bridgeName);
bool connectBridge();
bool disconnectBridge();
void StarDundeeSelectBrick(int brickIndex);
void StarDundeeSelectLinkNumber(int linkIndex);
void StarDundeeSelectLinkSpeed(int linkSpeed);
void StarDundeeSetSourceAddress(const QString & destKey);
void StarDundeeSetDestinationAddress(const QString & address);
void StarDundeeSetDestinationKey(const QString & key);
void StarDundeeSetRmapTimeout(const QString & timeout);
int StarDundeeGetAvailableBrickCount();
unsigned int StarDundeeGetNbPacketsTransmittedToSpw( void );
unsigned int StarDundeeGetNbCCSDSPacketsTransmittedToSpw( void );
int StarDundeeGetLinkNumber();
void StarDundeeSetBrickAsAninterface( bool );
void StarDundeeSetBrickAsARouter( bool );
void StarDundeeSetTimecodeFrequency( double );
void StarDundeeStartTimecodes( bool );
void TCPServerConnect();
void TCPServerDisconnect();
void TCPServerSetPort(qint32 port);
void TCPServerSetIP(QString ip);
public slots:
};
#endif // SPWPYWRAPPER_H