##// 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:

r0:2d12462f4460 default
r40:cda6b4e8adc1 Patch 3 from Paul on spwplugin default
Show More
genericmemoryspacecheck.h
36 lines | 1.0 KiB | text/x-c | CLexer
/ memctrlrplugin / genericmemoryspacecheck.h
First init /!\ outdated spwplugin!
r0 #ifndef GENERICMEMORYSPACECHECK_H
#define GENERICMEMORYSPACECHECK_H
#include <QWidget>
#include <qhexspinbox.h>
#include <memsizewdgt.h>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QPushButton>
#include <QLabel>
class genericmemoryspacecheck : public QWidget
{
Q_OBJECT
public:
explicit genericmemoryspacecheck(const QString Name,unsigned int baseAddress,unsigned int size,QWidget *parent = 0);
static bool launchTest(genericmemoryspacecheck* instance,unsigned int baseAddress,unsigned int size);
signals:
unsigned int WriteSig(unsigned int* Value,unsigned int count,unsigned int address);
unsigned int ReadSig(unsigned int* Value,unsigned int count,unsigned int address);
public slots:
void launchTestSlt();
private:
QVBoxLayout* mainLayout;
QHBoxLayout* secondLayout;
QLabel* MemoryName;
QHexSpinBox* AddrQHspBx;
MemSizeWdgt* MemSize;
QPushButton* LaunchtestQPB;
QLabel* result;
};
#endif // GENERICMEMORYSPACECHECK_H