##// 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
incomingtcparser.h
26 lines | 472 B | text/x-c | CLexer
#ifndef INCOMINGTCPARSER_H
#define INCOMINGTCPARSER_H
#include <QObject>
class IncomingTCParser : public QObject
{
Q_OBJECT
public:
explicit IncomingTCParser(QObject *parent = 0);
void processIncomingQByteArray(QByteArray incomingQByteArray);
signals:
void sendMessage( QString );
void sendPacketUsingSpaceWire( QByteArray packet );
public slots:
private:
QByteArray localDataArray;
bool incompleteData;
};
#endif // INCOMINGTCPARSER_H